This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
Releases: unickq/allure-nunit
Releases · unickq/allure-nunit
1.2.1.1
1.2.0.1
1.0.14
🐛 Bug Fix
- #40 - Categories Grouping fix for AllureDisplayIgnoredAttribute (@CraigRichards)
- #39 - Fixed underlying failure exception (@CraigRichards)
1.0.14-beta3
- Merge Allure and Allure.Steps
- Add more detailed test samples in a separate project
- Merge #36
1.0.12
1.0.11 - Fixed possible NUnit 3.10.1 reference issue
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
Feature #25
[AllureStep("Login with user {0} and password {1}")]
public void StepSample(string username, string password)
{
Console.WriteLine(username);
Console.WriteLine(password);
}
1.0.6.2: Fixed #19 and #21
1.0.5
1.0.4
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");
}