views:

120

answers:

1

Hi. I got an xml file with test results. I tried to add the results to Visual Studio 2008. I did almost everything right except getting the project name which i can't extract from the .xml file to the .trx file The question is what is the correct format of the .trx file so it will show me the project name.

+1  A: 

.trx files don't actually contain any information on the project that they are for.

As a reference, if you are converting NUnit tests to .trx so you can import them you might want to look at http://codeplex.com/nunit4teambuild which already provides this functionality.

Otherwise you might find it useful to look at Dominic Hopton's post explaining some of the internals of trx files

Richard Banks
+1 My man Dominic ... Great reference.
Gabriel