Summary
Test one or more projects specified by a path or glob pattern 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)
Examples
Specify the path to the .csproj file in the test project.
DotNetVSTest("./test/Project.Tests/bin/Release/netcoreapp2.1/Project.Tests.dll");
You could also specify a glob pattern to run multiple test projects.
DotNetVSTest("./**/bin/Release/netcoreapp2.1/*.Tests.dll");
Attributes
Type | Description |
---|---|
Cake |
An attribute used to mark script method aliases. |
Cake |
An attribute used for documentation of alias methods/properties. |
Cake |
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. |
Return Value
Type | Description |
---|---|
void |