NUnit aliases

Built-In

Contains functionality related to running NUnit 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 NUnitSettings class:

#tool "nuget:?package=NUnit.Runners&version=2.6.4"

General

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