Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking to run automated NUnit tests for a C# application, nightly and on each commit to svn.

Is this something that Jenkins-CI can do?
Is there an online tutorial or how-to document which documents a similar setup that I can look at?

share|improve this question
is there anything else you are looking for? – jglouie Feb 6 '12 at 18:06
I'm looking for a tutorial or how-to document with a similar setup. – blueberryfields Feb 15 '12 at 17:52
Do you have NUnit running the tests as you want from the commandline? If not, that's step 1 – jglouie Feb 15 '12 at 18:28

3 Answers

up vote 22 down vote accepted

I needed to do exactly what you do, here's how I setup Jenkins to do this:

  1. Add the NUnit Plugin to Jenkins
  2. In your project go to Configure -> Build -> Add a build step
  3. In the dropdown scroll down to -> Execute Windows Batch Command
  4. Ensure this step is placed after your MSBuild step
  5. Add the following, replacing the variables:

    [PathToNUnit]\bin\nunit-console.exe [PathToTestDll]\Selenium.Tests.dll /xml=nunit-result.xml

  6. Under Post-build Actions, tick Publish NUnit test result report
  7. For the textbox Test report XMLs, enter "nunit-result.xml"
Once you project has been built, NUNit will now run and the results will be viewable either on the Dashboard(if you hover over the Weather report icon) or on the project page under Last Test Result.

You could also run the command from within Visual Studio or as part of you local build process.

Here's two blog posts I used for reference. I didn't find any that fitted my requirements exactly:
1-Hour Guide to Continuous Integration Setup: Jenkins meets .Net (2011)
Guide to building .NET projects using Hudson (2008)

share|improve this answer
I don't really see how this is enough. Is it normal to only have one (or a few) test dlls? We have a load of them, and they get created and removed often. Shouldn't there be a way to do this without having to hard code the test in to jenkins? – André Christoffer Andersen Oct 25 '12 at 9:40
Point the build step to a use a .bat or .cmd file under source control, which kicks off your NUnit command. Now, you can modify the tests that will be run as frequently as you want without changing Jenkins. You should also look at NUnit Test Projects, as that might help you too. The key is telling Jenkins which xml file to use for the test report. – Ralph Willgoss Oct 25 '12 at 13:21

Jenkins does have plugins that will support that. The exact configuration is going to depend quite a bit on your project setup. There are specific plugins for nUnit, MSBuild,nAnt etc. Start by looking at the plugins page, but it shouldn't be terribly difficult to figure out.

share|improve this answer

This works nicely, I've set this up before.

Configure NUnit to output the results to an XML file and configure the NUnit Jenkins Plugin to consume this XML file. The results will be available on the dashboard.

Now, how you invoke NUnit is up to you. The way we did it was: Jenkins job executes NAnt target executes NUnit test suite.

You can configure Jenkins jobs to run on commit and/or scheduled at a certain time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.