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.
#:package UnderTest.Nuke@0.7.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code 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 495 2/21/2021
0.8.0-rc001 399 12/28/2020
0.7.0 18,232 8/23/2020
0.7.0-rc005 436 8/23/2020
0.7.0-rc004 490 8/22/2020
0.7.0-rc003 575 8/2/2020
0.7.0-rc002 716 7/25/2020
0.7.0-rc001 479 2/29/2020
0.6.0 7,769 10/9/2019
0.6.0-alpha003 455 10/8/2019
0.6.0-alpha002 464 9/2/2019
0.6.0-alpha001 477 9/2/2019
0.5.0 2,223 4/12/2019
0.5.0-delta 533 4/10/2019
0.5.0-charlie 548 4/9/2019
0.5.0-beta 578 4/9/2019
0.5.0-alpha 518 4/9/2019
0.4.0 803 2/25/2019
0.4.0-alpha 546 2/24/2019
0.3.1 699 2/23/2019
0.3.0 747 2/10/2019
0.3.0-delta 680 1/27/2019
0.3.0-charlie 635 1/27/2019
0.3.0-beta 615 1/25/2019
0.3.0-alpha 625 1/24/2019
0.2.0 817 1/15/2019
0.2.0-charlie 690 1/14/2019
0.2.0-beta 696 1/13/2019
0.2.0-alpha 662 1/13/2019
0.1.0 982 12/28/2018
0.1.0-charlie 694 12/27/2018
0.1.0-beta 643 12/27/2018
0.1.0-alpha 659 12/27/2018