Allure.XUnit is library for display xunit tests in Allure report.
Allure.XUnit supports .NET Core 2.0 and later.
- AllureXunit
- AllureDescription
- AllureParentSuite
- AllureFeature
- AllureTag
- AllureSeverity
- AllureIssue
- AllureOwner
- AllureSuite
- AllureSubSuite
- AllureLink
- AllureEpic
- AllureLabel
- AllureXunitTheory - attribute for display parametrized tests. Use
InlineData
,MemberData
,ClassData
, XUnit attributes for pass parameters.
All methods have to be tagged by attribute AllureXunit instead of Fact, or AllureXunitTheory instead of Theory for display in allure report. Other attributes are optional.
Most of the attributes can be used both on methods and classes.
Attribute | Method | Class |
---|---|---|
AllureXunit | x | |
AllureDescription | x | |
AllureParentSuite | x | x |
AllureFeature | x | x |
AllureTag | x | x |
AllureSeverity | x | x |
AllureIssue | x | x |
AllureOwner | x | x |
AllureSuite | x | x |
AllureSubSuite | x | x |
AllureLink | x | x |
AllureEpic | x | x |
AllureLabel | x | x |
AllureXunitTheory | x |
To override attribute value you can use overwrite
param in attribute definition.
In other case multiple values will be written in test results.
Example:
[AllureSuite("Suite A")]
public class TestClass
{
[AllureXunit(DisplayName = "Test Name")]
[AllureSuite("Suite B", overwrite: true))]
public void TestMethod
{
}
}
There are two ways to describe steps:
- Use
Steps
class for functional or imperative approach. - Use
AllureStepAttribute
,AllureBeforeAttribute
,AllureAfterAttribute
for declarative approach.
See Examples.
Use AllureAttachments
class with it's methods.
Just run dotnet test
.
allure-results
directory with result appears after running tests in target directory.
Execute command allure serve ./
in allure-results directory to local viewing tests. Also you can browse result
using similar docker-compose file.
See Examples