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.2.1.1

16 Jan 23:08
Compare
Choose a tag to compare

🚀 New Feature

🐛 Bug Fix

  • #45 - NullReferenceException in AllureStepAspect.WrapStep (@unickq)

1.2.0.1

08 Dec 19:22
Compare
Choose a tag to compare
  • #37 - refactoring

💥 Breaking Change

  • Merged steps and tests in a single package. No need to install NUnit.Allure.Steps package

💅 Polish

  • General cleanup
  • NUnit 3.12.2

If any new errors are addressed - please create an issue and downgrade to 1.0.14

1.0.14

16 Jun 09:19
ddbc780
Compare
Choose a tag to compare

🐛 Bug Fix

1.0.14-beta3

16 May 21:30
Compare
Choose a tag to compare
1.0.14-beta3 Pre-release
Pre-release
  • Merge Allure and Allure.Steps
  • Add more detailed test samples in a separate project
  • Merge #36

1.0.12

14 Feb 23:24
Compare
Choose a tag to compare

💥 Breaking Change

🐛 Bug Fix

  • #34 - Added support AllureDisplayIgnored for ignoring testcases (@Setil)
  • #32 - fixed AllureExtendedConfiguration not created from AllureConfiguration (@Rumyash)

1.0.11 - Fixed possible NUnit 3.10.1 reference issue

31 Aug 09:17
Compare
Choose a tag to compare

Some users on .net faced issues after NUnit 3.12 update. This fixes it - 3.12 uses by default

Also merged Step params #29 by @IZaiarnyi

1.0.9 - parameters for steps

24 Mar 08:28
Compare
Choose a tag to compare

Feature #25

[AllureStep("Login with user {0} and password {1}")]
public void StepSample(string username, string password)
{
      Console.WriteLine(username);
      Console.WriteLine(password);
}

image

1.0.6.2: Fixed #19 and #21

26 Dec 17:24
Compare
Choose a tag to compare

1.0.5

06 Dec 11:04
Compare
Choose a tag to compare

Fix: Attribute cannot be null in parametrized tests #17

1.0.4

20 Sep 12:44
Compare
Choose a tag to compare

Release 1.0.4: Fix #14

  • [OneTime] Attributes added as steps. No results, not execution time - just a method name.
  • Console Output is now an allure attachment - much more readable.
  • AllureExtensions.WrapSetUpTearDownParams for SetUp/TearDown/OneTimeSetUp - ability to change step name and add its execution time.
  • OneTimeTearDown is just a step without result. Obviously if OneTimeSetUp is failed there won't be any results at all (Action Attributes Approach) - but it's untrackable for OneTimeTearDown

Example:

[TearDown]
public void TearDown()
{
     AllureExtensions.WrapSetUpTearDownParams(() =>
     {
          Thread.Sleep(750);
          Console.WriteLine("Example of wrapped TearDown");
     }, "Custom TearDown name here");
}

screenshot_2