xUnit aliases

Built-In

Contains functionality related to running xunit 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 XUnitSettings class:

#tool "nuget:?package=xunit.runner.console&version=2.2.0"

General

XUnit(GlobPattern, XUnitSettings) Runs all xUnit.net tests in the assemblies matching the specified pattern.
XUnit(GlobPattern) Runs all xUnit.net tests in the assemblies matching the specified pattern.
XUnit(IEnumerable<FilePath>, XUnitSettings) Runs all xUnit.net tests in the specified assemblies.
XUnit(IEnumerable<FilePath>) Runs all xUnit.net tests in the specified assemblies.
XUnit(IEnumerable<string>, XUnitSettings) Runs all xUnit.net tests in the specified assemblies.
XUnit(IEnumerable<string>) Runs all xUnit.net tests in the specified assemblies.