Automatically report SetUps and TearDowns of NUnit's test fixtures #370
Labels
task:improvement
Change that improves some user experience but can't be considered a new feature
theme:nunit
Currently, to make test-level fixtures appears in the report, one has to mark them with
[AllureBefore]
(forSetUp
methods) or[AllureAfter]
(forTearDown
methods).We should pick the fixtures up automatically. In other words, this:
should produce the same report as this:
Motivation
Considerations
The following should be supported to not take away features, users already have:
[AllureBefore]
and[AllureAfter]
, a special attribute like[AllureTitle]
or[AllureName]
or, probably, a built-in[DisplayName]
).[AllureIgnore]
or maybe other means).Backward compatibility
[AllureBefore]
and[AllureAfter]
should still be supported (although, marked as obsolete).See also
allure-framework/allure-csharp#359
The text was updated successfully, but these errors were encountered: