DotNetAliases.

DotNetTest(ICakeContext, string) Method

Summary

Test project with path.
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)

Examples

Specify the path to the .csproj file in the test project.

DotNetTest("./test/Project.Tests/Project.Tests.csproj");

You could also specify a task that runs multiple test projects.

Cake task:

Task("Test")
    .Does(() =>
{
    var projectFiles = GetFiles("./test/**/*.csproj");
    foreach(var file in projectFiles)
    {
        DotNetTest(file.FullPath);
    }
});

If your test project is using project.json, the project parameter should just be the directory path.

DotNetTest("./test/Project.Tests/");

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.

Return Value

Type Description
void