Skip to content

Instantly share code, notes, and snippets.

@vansha
vansha / MSpecToJUnitWithMSBuild.xml
Created September 4, 2010 20:50
Transform MSpect to JUnit using MSBuild
<Target Name="TransformMSpectToJUnit">
<XslTransformation
XmlInputPaths="$(SpecsResults)"
XslInputPath="$(MSpecToJUnitTransform)"
OutputPaths="$(SpecsAsJUnitOutput)"/>
</Target>
@vansha
vansha / MSpecToJUnit.xslt
Last active September 23, 2015 13:58
MSpec to JUnit transformation
<?xml version="1.0" encoding="utf-8"?>
<!--
Converts the MSpec (http://github.com/machine/machine.specifications) xml
output to JUnit output format.
The aim of this transformation is to integrate MSpec tests to Jenkins CI.
Jenkins understands test results presented in JUnit format.
-->