Summary
[deprecated] DotNetCoreVSTest is obsolete and will be removed in a future release. Use
DotNetVSTest(ICakeContext, IEnumerable<FilePath>, DotNetVSTestSettings)
instead.
Test one or more specified projects with settings using the VS Test host runner.
- Namespace
- Cake
.Common .Tools .DotNetCore - Containing Type
- DotNetCoreAliases
Syntax
[CakeMethodAlias]
[CakeAliasCategory("Test")]
[CakeNamespaceImport("Cake.Common.Tools.DotNetCore.VSTest")]
[Obsolete("DotNetCoreVSTest is obsolete and will be removed in a future release. Use DotNetVSTest instead.")]
public static void DotNetCoreVSTest(this ICakeContext context, IEnumerable<FilePath> testFiles, DotNetCoreVSTestSettings settings)
Examples
var settings = new DotNetCoreVSTestSettings
{
Framework = "FrameworkCore10",
Platform = "x64"
};
DotNetCoreVSTest(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 DotNetCoreVSTestSettings
{
Framework = "FrameworkCore10",
Platform = "x64",
Parallel = true
};
var testFiles = GetFiles("./test/**/bin/Release/netcoreapp2.1/*.Test.dll");
DotNetCoreVSTest(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. |
ObsoleteAttribute |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
testFiles | IEnumerable |
The project paths to test. |
settings | Dot |
The settings. |
Return Value
Type | Description |
---|---|
void |