UnderTest.Nuke
0.7.0
See the version list below for details.
dotnet add package UnderTest.Nuke --version 0.7.0
NuGet\Install-Package UnderTest.Nuke -Version 0.7.0
<PackageReference Include="UnderTest.Nuke" Version="0.7.0" />
paket add UnderTest.Nuke --version 0.7.0
#r "nuget: UnderTest.Nuke, 0.7.0"
// Install UnderTest.Nuke as a Cake Addin #addin nuget:?package=UnderTest.Nuke&version=0.7.0 // Install UnderTest.Nuke as a Cake Tool #tool nuget:?package=UnderTest.Nuke&version=0.7.0
UnderTest.Nuke
In building UnderTest we were copying runner code from project to project and this was creating technical debt.
From this, we built UnderTest.Nuke, which takes our opinions on how BDD acceptance tests should be automated.
We built this with a few principles:
- Quick to get started
- Repeatable pattern to the builds
- Report generation is critical to success
Getting Started:
Only running acceptance tests
In many projects, there are solutions only setup for running tests. These may be tests which span multiple microservices or systems. For situations like these, we have our UnderTestBuildRunner
which will template out the entire build process and get to your test results as quickly as possible.
- Create your acceptance testing project with UnderTest
- Add a build project using nuke.build’s
nuke :setup --boot
- Add UnderTest.Nuke by installing this package
Install-Package UnderTest.Nuke
- Add to the generated
Build.cs
file with the following:
Project AcceptanceTestsProject => Solution.GetProject("AcceptanceTests");
public Target AcceptanceTests =>
_ =>
_.DependsOn(UnitTests)
.Executes(() =>
{
UnderTestTasks.UnderTestRunSuite(x => x
.SetConfiguration(Configuration)
.SetProject(AcceptanceTestsProject)
.SetOnlyRunTheseTags(new[] {"@smoke"}));
});
- where
AcceptanceTests
is the name of your UnderTest project
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.1 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
-
.NETCoreApp 2.1
- Nuke.Common (>= 0.24.11)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.8.0-rc002 | 380 | 2/21/2021 |
0.8.0-rc001 | 305 | 12/28/2020 |
0.7.0 | 12,099 | 8/23/2020 |
0.7.0-rc005 | 339 | 8/23/2020 |
0.7.0-rc004 | 393 | 8/22/2020 |
0.7.0-rc003 | 482 | 8/2/2020 |
0.7.0-rc002 | 563 | 7/25/2020 |
0.7.0-rc001 | 380 | 2/29/2020 |
0.6.0 | 7,661 | 10/9/2019 |
0.6.0-alpha003 | 350 | 10/8/2019 |
0.6.0-alpha002 | 359 | 9/2/2019 |
0.6.0-alpha001 | 372 | 9/2/2019 |
0.5.0 | 2,104 | 4/12/2019 |
0.5.0-delta | 429 | 4/10/2019 |
0.5.0-charlie | 439 | 4/9/2019 |
0.5.0-beta | 472 | 4/9/2019 |
0.5.0-alpha | 408 | 4/9/2019 |
0.4.0 | 690 | 2/25/2019 |
0.4.0-alpha | 429 | 2/24/2019 |
0.3.1 | 583 | 2/23/2019 |
0.3.0 | 634 | 2/10/2019 |
0.3.0-delta | 571 | 1/27/2019 |
0.3.0-charlie | 526 | 1/27/2019 |
0.3.0-beta | 506 | 1/25/2019 |
0.3.0-alpha | 517 | 1/24/2019 |
0.2.0 | 705 | 1/15/2019 |
0.2.0-charlie | 581 | 1/14/2019 |
0.2.0-beta | 584 | 1/13/2019 |
0.2.0-alpha | 553 | 1/13/2019 |
0.1.0 | 867 | 12/28/2018 |
0.1.0-charlie | 587 | 12/27/2018 |
0.1.0-beta | 538 | 12/27/2018 |
0.1.0-alpha | 549 | 12/27/2018 |