Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the reference source for a standard XUnit report XML [closed]

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?

like image 519
Johannes Avatar asked Apr 04 '12 16:04

Johannes


People also ask

What is xUnit XML?

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.

What is xUnit report?

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.

What is xUnit testing in C #?

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.


1 Answers

http://reflex.gforge.inria.fr/xunit.html#xunitReport

like image 121
Shnitzel Avatar answered Oct 19 '22 11:10

Shnitzel