I have integrated continuous build process with Cruise Control. At the EOD, it generates a build report. If any NUnit test cases fail, then the build fails. We have written one specific test case and added it in a separate dll. We don’t want our build to fail if any test case in that assembly fails. We are using MSBuild target, .proj files and cruise control, ccnet config file.
I have integrated continuous build process with Cruise Control. At the EOD, it generates
Share
I would call NUnit two times: once for the tests you want to fail the build if the don’t pass, then a second time to run the tests whose results you don’t want to affect the build, e.g.,