I'm currently in the processing of designing a TFS 2010 build process that can run Silverlight tests, based on this article:
http://pyxis-tech.com/blog/2011/01/24/how-to-run-silverlight-automated-tests-on-tfs-build-server/
I've got StatLight generating the results file in MSTest generic format, which is great. However, I now need to publish the results in the build so that a failed test will break the build.
The article above mentions using a custom activity to parse the StatLight output and publish failures, but doesn't actually provide the code, so I have no idea what to do here.
Ideally I would publish the test results using the standard MSTest activity which is used to run our normal tests, as I would like to avoid custom activities if at all possible, however I don't know if this is possible.
Can anyone provide some assistance in this area? I can't find anything on the web other than the article above.