NUnit v3 aliases

Built-In

Contains functionality related to running NUnit v2 and v3 unit tests.

In order to use the commands for this alias, include the following in your build.cake file to download and install from nuget.org, or specify the ToolPath within the NUnit3Settings class:

#tool "nuget:?package=NUnit.ConsoleRunner"

General

NUnit3(GlobPattern, NUnit3Settings) Runs all NUnit unit tests in the assemblies matching the specified pattern, using the specified settings.
NUnit3(GlobPattern) Runs all NUnit unit tests in the assemblies matching the specified pattern.
NUnit3(IEnumerable<FilePath>, NUnit3Settings) Runs all NUnit unit tests in the specified assemblies, using the specified settings.
NUnit3(IEnumerable<FilePath>) Runs all NUnit unit tests in the specified assemblies.
NUnit3(IEnumerable<string>, NUnit3Settings) Runs all NUnit unit tests in the specified assemblies, using the specified settings.
NUnit3(IEnumerable<string>) Runs all NUnit unit tests in the specified assemblies.