Allure.Net.Commons
2.9.4-preview.1
See the version list below for details.
dotnet add package Allure.Net.Commons --version 2.9.4-preview.1
NuGet\Install-Package Allure.Net.Commons -Version 2.9.4-preview.1
<PackageReference Include="Allure.Net.Commons" Version="2.9.4-preview.1" />
paket add Allure.Net.Commons --version 2.9.4-preview.1
#r "nuget: Allure.Net.Commons, 2.9.4-preview.1"
// Install Allure.Net.Commons as a Cake Addin #addin nuget:?package=Allure.Net.Commons&version=2.9.4-preview.1&prerelease // Install Allure.Net.Commons as a Cake Tool #tool nuget:?package=Allure.Net.Commons&version=2.9.4-preview.1&prerelease
Allure.Net.Commons
.Net implementation of Allure java-commons.
Can be targeted either by legacy .net 4.5+ or .net standard 2.* projects.
Use this library to create custom Allure adapters for .Net test frameworks.
Configuration
Allure lifecycle is configured via json file with default name allureConfig.json
. NuGet package installs allureConfig.Template.json
which you can use as an example. There are 2 ways to specify config file location:
set ALLURE_CONFIG environment variable to the full path of json config file. This option is preferable for .net core projects which utilize nuget libraries directly from nuget packages folder. See this example of setting it via code: https://github.com/allure-framework/allure-csharp/blob/bdf11bd3e1f41fd1e4a8fd22fa465b90b68e9d3f/Allure.Commons.NetCore.Tests/AllureConfigTests.cs#L13-L15
place
allureConfig.json
to the location ofAllure.Commons.dll
. This option can be used with .net classic projects which copy all referenced package libraries into binary folder. Do not forget to set 'Copy to Output Directory' property to 'Copy always' or 'Copy if newer' in your test project or set it in .csproj:
<ItemGroup>
<None Update="allureConfig.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
Allure lifecycle will start with default configuration settings if allureConfig.json
is not found.
Raw json configuration can be accessed from AllureLifeCycle.Instance.JsonConfiguration
to extend configuration by adapters. See extension example here: https://github.com/allure-framework/allure-csharp/blob/bdf11bd3e1f41fd1e4a8fd22fa465b90b68e9d3f/Allure.SpecFlowPlugin/PluginHelper.cs#L20-L29
Base configuration params are stored in AllureLifeCycle.Instance.Configuration
Allure configuration section is used to setup output directory and link patterns, e.g.:
{
"allure": {
"directory": "allure-results", // optional, default value is "allure-results"
"title": "custom run title", // optional
"links": //optional
[
"https://example.org/{link}",
"https://example.org/{issue}",
"https://example.org/{tms}"
]
}
}
All Link pattern placeholders will be replaced with URL value of corresponding link type, e.g.
link(type: "issue", url: "BUG-01") => https://example.org/BUG-01
AllureLifecycle
AllureLifecycle class provides methods for test engine events processing.
Use AllureLifecycle.Instance
property to access.
Fixture Events
- StartBeforeFixture
- StartAfterFixture
- UpdateFixture
- StopFixture
Testcase Events
- StartTestCase
- UpdateTestCase
- StopTestCase
- WriteTestCase
Step Events
- StartStep
- UpdateStep
- StopStep
Attachment Events
- AddAttachment - adds attachment to the current lifecycle executable item
- AddScreenDiff - adds needed artifacts to the test case with given uuid to be used with screen-diff-plugin
Utility Methods
- CleanupResultDirectory - can be used in test run setup to clean old result files
Troubleshooting
...
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5
- MimeTypesMap (>= 1.0.8)
- Newtonsoft.Json (>= 13.0.1)
-
.NETStandard 2.0
- MimeTypesMap (>= 1.0.8)
- Newtonsoft.Json (>= 13.0.1)
NuGet packages (7)
Showing the top 5 NuGet packages that depend on Allure.Net.Commons:
Package | Downloads |
---|---|
Allure.NUnit
Create beautiful reports from your NUnit tests. |
|
Allure.Xunit
Create beautiful reports from your xUnit.net tests. |
|
Allure.SpecFlow
Create beautiful reports from your SpecFlow tests. |
|
Allure.Reqnroll
Create beautiful reports from your Reqnroll tests. |
|
Empyrean.Core.Allure
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.12.1 | 204,657 | 6/4/2024 |
2.12.0 | 136,220 | 4/2/2024 |
2.11.0 | 168,800 | 11/29/2023 |
2.10.0 | 59,988 | 10/16/2023 |
2.10.0-preview.1 | 5,996 | 9/22/2023 |
2.9.5-preview.1 | 128,353 | 3/22/2023 |
2.9.4-preview.6 | 52,041 | 2/13/2023 |
2.9.4-preview.5 | 142 | 2/13/2023 |
2.9.4-preview.2 | 15,651 | 1/2/2023 |
2.9.4-preview.1 | 188 | 12/30/2022 |
2.9.3-preview.1 | 5,539 | 12/23/2022 |
2.9.2-preview.1 | 14,012 | 9/19/2022 |
2.9.1-preview.7-nunit-fixtures | 2,043 | 8/2/2022 |
2.9.1-preview.6-nunit-fixtures | 165 | 7/27/2022 |
2.9.1-preview.5 | 183 | 7/27/2022 |
2.9.1-preview.3 | 147 | 7/12/2022 |
2.9.1-preview.2 | 165 | 7/12/2022 |
2.9.0 | 1,279 | 7/8/2022 |