DotNetAliases.

DotNetTest(ICakeContext, string, ProcessArgumentBuilder, DotNetTestSettings) Method

Summary

Test project with settings.
Namespace
Cake.Common.Tools.DotNet
Containing Type
DotNetAliases

Syntax

[CakeMethodAlias]
[CakeAliasCategory("Test")]
[CakeNamespaceImport("Cake.Common.Tools.DotNet.Test")]
public static void DotNetTest(this ICakeContext context, string project, ProcessArgumentBuilder arguments, DotNetTestSettings settings)

Examples

 var settings = new DotNetTestSettings
 {
     Configuration = "Release"
 };

 DotNetTest("./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 DotNetTestSettings
     {
         Configuration = "Release"
     };

     var projectFiles = GetFiles("./test/**/*.csproj");
     foreach(var file in projectFiles)
     {
         DotNetTest(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 DotNetTestSettings
 {
     Configuration = "Release"
 };

 DotNetTest("./test/Project.Tests/", "MSTest.MapInconclusiveToFailed=true", 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.
project string The project path.
arguments ProcessArgumentBuilder The arguments.
settings DotNetTestSettings The settings.

Return Value

Type Description
void