Summary
Test project with settings.
- Namespace
- Cake
.Common .Tools .DotNetCore - Containing Type
- DotNetCoreAliases
Syntax
[CakeMethodAlias]
[CakeAliasCategory("Test")]
[CakeNamespaceImport("Cake.Common.Tools.DotNetCore.Test")]
public static void DotNetCoreTest(this ICakeContext context, string project, ProcessArgumentBuilder arguments, DotNetCoreTestSettings settings)
Examples
var settings = new DotNetCoreTestSettings
{
Configuration = "Release"
};
DotNetCoreTest("./test/Project.Tests/Project.Tests.csproj", settings);
You could also specify a task that runs multiple test projects.
Cake task:
Task("Test")
.Does(() =>
{
var settings = new DotNetCoreTestSettings
{
Configuration = "Release"
};
var projectFiles = GetFiles("./test/**/*.csproj");
foreach(var file in projectFiles)
{
DotNetCoreTest(file.FullPath, "MSTest.MapInconclusiveToFailed=true", settings);
}
});
If your test project is using project.json, the project parameter should just be the directory path.
var settings = new DotNetCoreTestSettings
{
Configuration = "Release"
};
DotNetCoreTest("./test/Project.Tests/", "MSTest.MapInconclusiveToFailed=true", 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. |
project | string | The project path. |
arguments | Process |
The arguments. |
settings | Dot |
The settings. |
Return Value
Type | Description |
---|---|
void |