UnderTest.Nuke 0.7.0

There is a newer prerelease version of this package available.
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
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="UnderTest.Nuke" Version="0.7.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="UnderTest.Nuke" Version="0.7.0" />
                    
Directory.Packages.props
<PackageReference Include="UnderTest.Nuke" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add UnderTest.Nuke --version 0.7.0
                    
#r "nuget: UnderTest.Nuke, 0.7.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=UnderTest.Nuke&version=0.7.0
                    
Install as a Cake Addin
#tool nuget:?package=UnderTest.Nuke&version=0.7.0
                    
Install as a Cake Tool

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.

  1. Create your acceptance testing project with UnderTest
  2. Add a build project using nuke.build’s nuke :setup --boot
  3. Add UnderTest.Nuke by installing this package Install-Package UnderTest.Nuke
  4. 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 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 455 2/21/2021
0.8.0-rc001 363 12/28/2020
0.7.0 16,790 8/23/2020
0.7.0-rc005 401 8/23/2020
0.7.0-rc004 454 8/22/2020
0.7.0-rc003 540 8/2/2020
0.7.0-rc002 672 7/25/2020
0.7.0-rc001 444 2/29/2020
0.6.0 7,733 10/9/2019
0.6.0-alpha003 419 10/8/2019
0.6.0-alpha002 428 9/2/2019
0.6.0-alpha001 438 9/2/2019
0.5.0 2,185 4/12/2019
0.5.0-delta 497 4/10/2019
0.5.0-charlie 513 4/9/2019
0.5.0-beta 541 4/9/2019
0.5.0-alpha 482 4/9/2019
0.4.0 765 2/25/2019
0.4.0-alpha 508 2/24/2019
0.3.1 662 2/23/2019
0.3.0 710 2/10/2019
0.3.0-delta 642 1/27/2019
0.3.0-charlie 599 1/27/2019
0.3.0-beta 580 1/25/2019
0.3.0-alpha 589 1/24/2019
0.2.0 780 1/15/2019
0.2.0-charlie 652 1/14/2019
0.2.0-beta 660 1/13/2019
0.2.0-alpha 625 1/13/2019
0.1.0 944 12/28/2018
0.1.0-charlie 659 12/27/2018
0.1.0-beta 607 12/27/2018
0.1.0-alpha 621 12/27/2018