Search Results

0
votes

Need help moving nUnit tests into separate project

Is the problem with it not finding the application itself, or one of the application's dependencies? You might try using either FileMon or the Fusion Log Viewer to see what exactly is failing. It …
0
votes

NUnit reference binaries in other directory

On the machine in question, create an environment variable "DEVPATH" and set the value to the path for your assemblies. Then, within nunit.exe.config, add the following within the \configuration\r …
1
vote

TestFixtureSetUp failed occasionally while running through cc.net

Is it the same cc.net project being forced that is scheduled to run nightly? If not, there may be a difference in how they are configured. If they are the same, I would suggest adding some loggin …
0
votes

Help running NUnit from dos command line.

I'm not sure how Resharper handles tests, but I do recall TestDriven.Net as being able to 'run test' on methods that were not actually marked as unit tests. Make sure your class is public and mark …
0
votes

Process timeout without showing any error in test execution using cc.net

One possibility is that you have a permission issue. CruiseControl is perhaps running under a service account and has different permissions than your user account (which I'm assuming you use to ma …
0
votes

error MSB1009: Project file does not exist on running fromCruiseControl

Your sourcecontrol block appears to be placing the code in "C:\source\TestReports\ITRTests\ITRTests\ITRTests" (note the three levels of 'ITRTests') but the msbuild task has a working directory of " …
0
votes

Process Kill during execution of Nunit tests

Looks rather similar to another one of your questions. …
0
votes

NUnit tests in a separate project, same solution

Instead of setting up NUnit as an External Tool, I set the unit test project as the StartUp project. In the project's Properties screen, set the Start Action to "Start external program" and point …
1
vote

Is using NUnit’s Sequential attribute a valid strategy to achieve one check per test?

It seems to me that your original two unit tests are easy enough to understand and could be left alone. In a given unit test you want to check one "unit" of functionality, which is not necessarily …
0
votes

nunit won’t redirect console output

/out=output.txt appears to be saving only items written out using Console.Writeline The details of the test run are stored in an xml file, which you can redirect using the /xml switch. …
0
votes

NUnit Categories in combination?

Sounds like what you need is a third category of "catAandB". …
1
vote

Is there a way to specify ANYTHING as an argument to NUnit Mocks Expect call?

Looking at version 2.5.2 of nunit.mocks.dll in Reflector, it doesn't appear there is a method that does what you are looking for. NUnit is open source, so one option is to get the code and add the …
1
vote

Running NUnit task in CruiseControl.NET always throws errors

I see from the fusion logs that NUnit appears to have ShadowCopy enabled. In the past, I've run into issues with this turned on. It doesn't appear that the CruiseControl task allows switching this …