DotNetBuild.RunTests method (1 of 2)

Runs tests on the specified paths.

public static void RunTests(this DotNetBuildSettings settings, IEnumerable<string?> paths)

Remarks

Calls RunTests on each path, in parallel if UseParallel is true.

See Also


DotNetBuild.RunTests method (2 of 2)

Runs tests on the specified path.

public static void RunTests(this DotNetBuildSettings settings, string? path)

Remarks

If null, runs all tests in the current solution. If an assembly, runs all tests in that assembly. Otherwise, runs all tests in the specified project or solution.

See Also