I have team build running on a TFS 2008 server. I want it to run my xUnit.net tests there and show the result in the Build details.
I know I have to do a lot of configuration in the TFSBuild.proj script file. I already managed to make the tests run, but the result does not appear in the build. I followed the instructions from mehfuz's blog.
Looking at other similar question, I got to Jonne Kats' post. Unfortunately, it's kind of obsolete. There's a lot a workaround included to overcome the lack of an ExitCode in the xunit task. With xunit 1.7, this is not required anymore.
I'm having a hard time trying to set this up. Can someone show me a way to publish the test results into the team build?
Update: I see that my question actually consists of a lot of small questions. Let me make it more direct.
I'm running an Xunit.Runner.MSBuild.xunit task successfully. It is set to generate a XML file with a test report. In order to show this report in the TFS Build Details, I need to import it using MSTest.exe. However, I must first convert it to a format that MSTest will understand.
Does anyone has a XSLT file that I could use for transforming the xUnit XML report into a MSTest TRX file?