vote up 1 vote down star
1

I currently have our build server set up with CruiseControl.Net running a build using MSBuild and then running unit tests using MSTest. The problem is I can't see the output of the unit tests in CC - I know they are being run because I can get the build to fail if I commit a failing test.

I have followed the online guides from http://blogs.blackmarble.co.uk/blogs/bm-bloggers/archive/2006/06/14/5255.aspx and http://www.softwarepassion.com/?p=89 but still having no luck.

My ccnet.config file contains

	<tasks>
		 <msbuild>
			  <executable>C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe</executable>
			  <workingDirectory>C:\CCBuilds</workingDirectory>
			  <projectFile>Application.sln</projectFile>
			  <buildArgs>/noconsolelogger /p:Configuration=Debug /v:diag</buildArgs>
			  <targets>Build</targets>
			  <timeout>900</timeout>
			  <logger>C:\Program Files\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MsBuild.dll</logger>
		</msbuild>  

		<exec>
			<executable>deleteTestLog.bat</executable>
			<baseDirectory>C:\CCBuilds</baseDirectory>
			<buildArgs></buildArgs>
			<buildTimeoutSeconds>30</buildTimeoutSeconds>
		</exec>

		<exec>
			<executable>C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\mstest.exe</executable>
			<baseDirectory>C:\CCBuilds</baseDirectory>
			<buildArgs>/testcontainer:UnitTests\bin\Debug\UnitTests.dll /runconfig:localtestrun.Testrunconfig /resultsfile:testResults.trx</buildArgs>
			<buildTimeoutSeconds>30</buildTimeoutSeconds>
		</exec>

	</tasks>

	<publishers>
		<merge>
			<files>
				<file>testResults.trx</file>
			</files>
		</merge>

		<xmllogger logDir="C:\Program Files\CruiseControl.NET\server\Checkin Build\Artifacts\buildlogs" />

	</publishers>

The log file in C:\Program Files\CruiseControl.NET\server\Checkin Build\Artifacts\buildlogs contains the unit test results, have I missed any steps?

flag

1 Answer

vote up 1 vote down

Did you configure your web dashboard with the correct xsl to format the outputs? There are two different versions of the XSL's (Summary and Report) for VSTS 2005 and 2008 as Microsoft changed the XML output drastically between the two versions. The changes were very good, just breaking changes.

link|flag
By the way if you also want code coverage on those tests see here dontbreakthebuild.blogspot.com/2008/11/… – Alex Jul 31 at 15:13

Your Answer

Get an OpenID
or

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