Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
7answers
599 views

Database for Importing NUnit results?

I have a large set of NUnit tests; I need to import the results from a given run into a database, then characterize the set of results and present them to the users (email for test failures, web ...
6
votes
2answers
572 views

How to run explicit test cases of Nunit

My test suite project contains some explicit test cases, now i want to execute the test cases with the help of Nunit-console.exe. When i execute the test cases, the explicit test cases were excluded ...
5
votes
2answers
420 views

Pass parameters via command line to NUnit

Is it somehow possible to pass values to NUnit tests via command line? My tests use a certain URL. I have different instances of my code at different URLs and would like to specify the URL via command ...
5
votes
3answers
2k views

NUnit fail with System.ArgumentException: The net-4.0 framework is not available

Exception: ProcessModel: Default DomainUsage: Single Execution Runtime: net-4.0 Unhandled Exception: System.ArgumentException: The net-4.0 framework is not available Parameter name: framework at ...
3
votes
2answers
905 views

Does anyone know where to find NUnit console exit codes meanings?

I am getting error message from my MSBuild: "nunit-console.exe" exited with code -100. Does anyone know where NUnit console exit codes meanings can be found?
3
votes
2answers
312 views

Powershell error in Executing NUnit test

This might sound silly but I have been trying to execute a NUnit test using powershell script, had several attempts but no hope. is there different format or do I need to add a plugin? Any help would ...
2
votes
0answers
197 views

Debug Visual Studio 2010 tests using nunit-console and VS-macro

I'm trying to debug tests from visual studio using nunit-console using a VS-macro, but I'm having issues when attaching the debugger / IDE to nunit-console / nunit-agent. I do have the macro working, ...
2
votes
1answer
250 views

NUnit with Rhino Mocks exception: Why is it throwing this exception?

I'm getting an exception that really makes no sense to me whatsoever. I have an Expect call for a method that takes 3 arguments into it: The types are called CallContext, IDal, and List. NUnit ...
2
votes
1answer
168 views

Output from external exe and my custom objects in powershell

(Sorry for strange title, haven't come up with anything better..) Background I use nunit-console to test my assemblies. It is called like this (simplified): function Test-ByNunit { ...
2
votes
2answers
1k views

NUnit-console 2.5.4 not capable of running multiple assemblies?

I am having problems running tests with the command line NUnit test runner. I am using version 2.5.4 with .NET 4 on an x64 machine. Using the following line results in a failure "Could not load file ...
2
votes
1answer
697 views

nunit-console.exe hangs after finishing test run

We got a problem with NUnit 2.5.3: nunit-console.exe does not return after finishing all tests. The process hangs forever. Example: All tests succeed, but it keeps doing something. Output: Runtime ...
1
vote
2answers
563 views

Redirecting nunit-console output to Visual Studio output window

I am testing an F# project using NUnit. On the debug tab of project configuration I have set the debugger to use an external program which is nunit-console here and the working directory to the debug ...
1
vote
1answer
89 views

nUnit test fails when run as part of larger namespace

I am having an interesting situation. In my test assembly, I have folders having specific test classes, i.e., TestFixture's. Consider, for e.g., the following hierarchy in VS: Sol TestProject ...
1
vote
1answer
1k views

How to run nunit with msbuild from VS2010

please tell me how to run nunit with msbuild. I am using TFS for code integration and VS2010 .
1
vote
1answer
210 views

Running nunit-console.exe fails while GUI is also running

I'm trying to run nunit-console.exe from a script and I get an 'Unable to locate fixture' error, but only when I have NUnit GUI also running. Once I close the NUnit GUI the script runs the tests just ...
1
vote
1answer
95 views

NUNIT Fails individual dlls but works fine with .nunit file

Can't figure out why my nunit tests fail when i call the .dll files individually however when i call the below .nunit file through nunit-console-x86.exe I suspect it has something to do with the ...
1
vote
1answer
120 views

Programatically Gathering NUnit results

I am running some NUnit tests automatically when my nightly build completes. I have a console application which detects the new build, and then copies the built MSI's to a local folder, and deploys ...
1
vote
1answer
433 views

nunit-console.exe problem with Mono

I could make a dll for NUnit (http://stackoverflow.com/questions/2967726/nunit-test-under-mono), but when I tried to run in with nunit-console.exe I get the following error message. Runtime ...
0
votes
0answers
9 views

Can nunit-console list all test names in a test fixture?

I'd like to report them before they're run, and have the option to run individual tests through shell scripts without managing categories. We have some unmanaged code which can leave the process in a ...
0
votes
0answers
25 views

nuint-console command line support for running specific tests from a DLL using /run

I need a small clarification on Nunit-console support for running a specific test in Fixture using the command line argument. Issue: The command i provides shows that the test is not run. Please ...
0
votes
1answer
78 views

When running multiple tags with NUnit Console Runner and SpecFlow I get incorrect results

This is a follow up to my earlier questions on setting up tags: Can I use tags in SpecFlow to determine the right environment to use? and setting up variables from those tags: How to set up a URL ...
0
votes
0answers
38 views

nunit-console throwing invalid argument error ( error code -1)

I have a call to nunit-console with very basic arguments: nunit-console test.dll /xml:test.xml /noshadow /nothread /labels /nologo Above command runs in a loop for each test dll. However, some test ...
0
votes
0answers
57 views

.nunit project file as an argument to NUnit-console.exe

I'm trying to execute only the NUnit tests that are checked in an NUnit project file I pass in to NUnit-console.exe. However, when I run: NUnit-console.exe TestAutomation.nunit, it runs everything ...
0
votes
1answer
119 views

nunit-console tests produces different result from different locations

I have got nunit-console.exe in 2 locations on my machine. First is where I installed it (c:\program files (x86)\nunit 2.5.10) and second is where I have copied it into (d:\tests\nunit). I am required ...
0
votes
2answers
42 views

Is it possible for run NUnit against a specific (long) list of tests

I have a list of several thousand NUnit tests that I want to run (generated automatically by another tool). (This is a subset of all of the tests, and changes frequently) I'd like to be able to run ...
0
votes
1answer
77 views

How to run two NUnit console runners in parallel for the same application?

how can I run the NUnit console.exe in parallel for the same application. Is it possible to do that?
0
votes
1answer
264 views

Running nunit-console on a solution file leads to System.IO.FileLoadException

When I try to use nunit-console.exe to run all the tests in a solution file as such: nunit-console.exe MyProject.sln I get the following exception (shown below). However when run the console runner ...
0
votes
0answers
42 views

Generating nunit test result when a test fails

I am currently working with the nunit-console. I have a dll which have 8 tests. To run the test a bat file has been created with following command: nunit-console.exe Sample.dll Result.xml This runs ...
0
votes
1answer
94 views

Continue running NUnit after failures

I am running nunit-conosle from a CI configured in TeamCity to run tests from various assemblies. Once one of the TestFixtures has a failing test, then the test execution will stop. Currently i am ...
0
votes
1answer
72 views

Running unit tests in multiple assemblies using nunit-console

I would like to run the fast tests in all the test assemblies in one go, to get a convenient unified output. My current batch file looks like this, it runs the tests: but many of the tests fail (they ...
0
votes
0answers
25 views

NUnit console newlines

When I run nunit-console, after running the tests in a fixture contained in a DLL, a variable number of newlines are outputted to the console, depending on the test fixture run. How can I prevent ...
0
votes
2answers
357 views

TeamCity Build Fails Because NUnit is Locking Files?

We have been having an issue with our project's Continuous Integration. Occasionally, we want to try to clean all of the files on build within TeamCity in its checkout directory. Whenever we try to do ...
0
votes
3answers
153 views

Running all NUnit tests in all assemblys from Cygwin command line

I'm trying to create a short bash script someone could run in cygwin to execute all nunit tests in a .NET project using nunit-console. Currently i have the system version of nunit aliased to "nunit" ...
0
votes
1answer
147 views

Help me avoid this NullReferenceException (using Rhino Mocks)

I'm currently trying to get one of my unit tests to work, but there is one thing in the way. I have a class called AccountingScheduleLookup that has an ID field attached to it that's read-only. When I ...
0
votes
1answer
676 views

Another PartCover Empty Report Question

I've tried the steps listed here, but I still can't get partcover to generate any output other than: <?xml version="1.0" encoding="utf-8"?> <PartCoverReport ver="2.2.0.36423" /> Here is ...