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.
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.
// 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.

  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. 
.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 334 2/21/2021
0.8.0-rc001 272 12/28/2020
0.7.0 7,795 8/23/2020
0.7.0-rc005 304 8/23/2020
0.7.0-rc004 363 8/22/2020
0.7.0-rc003 456 8/2/2020
0.7.0-rc002 499 7/25/2020
0.7.0-rc001 351 2/29/2020
0.6.0 7,618 10/9/2019
0.6.0-alpha003 321 10/8/2019
0.6.0-alpha002 329 9/2/2019
0.6.0-alpha001 346 9/2/2019
0.5.0 2,073 4/12/2019
0.5.0-delta 404 4/10/2019
0.5.0-charlie 413 4/9/2019
0.5.0-beta 445 4/9/2019
0.5.0-alpha 381 4/9/2019
0.4.0 660 2/25/2019
0.4.0-alpha 402 2/24/2019
0.3.1 555 2/23/2019
0.3.0 606 2/10/2019
0.3.0-delta 540 1/27/2019
0.3.0-charlie 497 1/27/2019
0.3.0-beta 477 1/25/2019
0.3.0-alpha 490 1/24/2019
0.2.0 670 1/15/2019
0.2.0-charlie 550 1/14/2019
0.2.0-beta 550 1/13/2019
0.2.0-alpha 525 1/13/2019
0.1.0 822 12/28/2018
0.1.0-charlie 561 12/27/2018
0.1.0-beta 513 12/27/2018
0.1.0-alpha 520 12/27/2018