DotNetAliases.

DotNetVSTest(ICakeContext, GlobPattern, DotNetVSTestSettings) Method

Summary

Test one or more projects specified by a path or glob pattern with settings using the VS Test host runner.
Namespace
Cake.Common.Tools.DotNet
Containing Type
DotNetAliases

Syntax

[CakeMethodAlias]
[CakeAliasCategory("Test")]
[CakeNamespaceImport("Cake.Common.Tools.DotNet.VSTest")]
public static void DotNetVSTest(this ICakeContext context, GlobPattern testFile, DotNetVSTestSettings settings)

Examples

Specify the path to the .csproj file in the test project.

 var settings = new DotNetVSTestSettings
 {
     Framework = "FrameworkCore10",
     Platform = "x64"
 };

 DotNetTest("./test/Project.Tests/bin/Release/netcoreapp2.1/Project.Tests.dll", settings);

You could also specify a glob pattern to run multiple test projects.

 var settings = new DotNetVSTestSettings
 {
     Framework = "FrameworkCore10",
     Platform = "x64",
     Parallel = true
 };

 DotNetVSTest("./**/bin/Release/netcoreapp2.1/*.Tests.dll", settings);

Attributes

Type Description
CakeMethodAliasAttribute An attribute used to mark script method aliases.
CakeAliasCategoryAttribute An attribute used for documentation of alias methods/properties.
CakeNamespaceImportAttribute An attribute used to hint Cake about additional namespaces that need to be imported for an alias to work. This attribute can mark an extension method, the extension method class, or the assembly to provide a global set of imports.

Parameters

Name Type Description
context ICakeContext The context.
testFile GlobPattern A path to the test file or glob for one or more test files.
settings DotNetVSTestSettings The settings.

Return Value

Type Description
void