Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Releases: unickq/allure-nunit

1.0.3

31 Aug 12:39
Compare
Choose a tag to compare

Allure attributes for class:

[TestFixture]
[AllureNUnit]
[AllureSuite("With parameters")]
[AllureTag("Parametrized Tests")]
[AllureSeverity(SeverityLevel.critical)]
class TestClass{
  //Your tests here
}

1.0.2 - NUnit attributes fix

16 Aug 21:45
Compare
Choose a tag to compare

Fix for tests additional params like Category, Description, Author #11

[TestFixture(Category = "TestFixtureCategory")]
[TestCase(Category = "TestCateCategory")]
[Test]
[Category("TestCategory")]

1.0.0

23 Jul 11:42
Compare
Choose a tag to compare

New:

  • Main AllureNUnit attribute for TestFixture
[AllureNUnit]
class BaseTest{
...
}
  • Steps Wrapping - with a custom method
AllureNUnitHelper.WrapInStep(() => Action)
  • Fix for #4 - SetUp/TearDown support 💯
  • Fix for #3 - Attachments
AllureLifecycle.Instance.AddAttachment()
  • More Allure Attributes (Owner, Epic, Link, Suite, SubSuite, etc.)
  • [AllureDisplayIgnored] for classed displays ignored tests in suites

Known issues:

  • Test containers are created for each test. Because of the current implementation main attribute (ActionTargets.Test)

https://www.nuget.org/packages/NUnit.Allure/1.0.0

0.2.2

24 May 10:15
Compare
Choose a tag to compare

Fixed #7