Summary
[deprecated] DotNetCoreTest is obsolete and will be removed in a future release. Use
DotNetTest(ICakeContext, string)
instead.
Test project with path.
- Namespace
- Cake
.Common .Tools .DotNetCore - Containing Type
- DotNetCoreAliases
Syntax
[CakeMethodAlias]
[CakeAliasCategory("Test")]
[CakeNamespaceImport("Cake.Common.Tools.DotNetCore.Test")]
[Obsolete("DotNetCoreTest is obsolete and will be removed in a future release. Use DotNetTest instead.")]
public static void DotNetCoreTest(this ICakeContext context, string project)
Examples
Specify the path to the .csproj file in the test project.
DotNetCoreTest("./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)
{
DotNetCoreTest(file.FullPath);
}
});
If your test project is using project.json, the project parameter should just be the directory path.
DotNetCoreTest("./test/Project.Tests/");
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. |
project | string | The project path. |
Return Value
Type | Description |
---|---|
void |