Summary
Test one or more specified projects 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, IEnumerable<FilePath> testFiles, DotNetVSTestSettings settings)
Examples
var settings = new DotNetVSTestSettings
{
Framework = "FrameworkCore10",
Platform = "x64"
};
DotNetVSTest(new[] { (FilePath)"./test/Project.Tests/bin/Release/netcoreapp2.1/Project.Tests.dll" }, settings);
You could also specify a task that runs multiple test projects.
Cake task:
Task("Test")
.Does(() =>
{
var settings = new DotNetVSTestSettings
{
Framework = "FrameworkCore10",
Platform = "x64",
Parallel = true
};
var testFiles = GetFiles("./test/**/bin/Release/netcoreapp2.1/*.Test.dll");
DotNetVSTest(testFiles, settings);
});
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. |
testFiles | IEnumerable |
The project paths to test. |
settings | DotNetVSTestSettings | The settings. |
Return Value
Type | Description |
---|---|
void |