I am writing an alternative to CUnit and i want it to generate XML output.
I want the output to be compatible to jenkins / hudson - so i am looking for the standard xml form that all XUnit tests complie to.
Is there such a standard?
Where is the definition of requirements to be displayable by jenkins/hudson?
The XUnit XML format was developed by the Ant project as part of their JUnit runner. The format includes a tree of test cases organized by test suite, and includes counts of test cases with each status, and the stack trace produced by test cases which failed or errored. There is no official schema.
About XUnit xUnit is a testing framework for . net languages (e.g. C#, F#, VB.NET) mostly focused in unit testing but that can also be used for integration testing. xUnit works with ReSharper, CodeRush, TestDriven.NET and Xamarin.
Besides the InlineData attribute, xUnit provides you with other ways to define data for theories, like ClassData , where the data source is a class implementing the IEnumerable interface, and MemberData , where the data source is a property or a method.
http://reflex.gforge.inria.fr/xunit.html#xunitReport
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With