Training
Module
C# testing in Visual Studio - Training
Start testing your C# apps by using the testing tools in Visual Studio. Learn to write tests, use Test Explorer, create test suites, and apply the red, green, refactor pattern to write code.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
This article provides insights into the dotnet test
CLI command, including its history compatibility with both VSTest and Microsoft.Testing.Platform (MTP).
The dotnet test
command operates in two primary modes:
dotnet test
and was the only mode available before the .NET 10 SDK. It is primarily designed for VSTest but can also run Microsoft.Testing.Platform test via Microsoft.Testing.Platform.MSBuild NuGet package.Tip
For CLI reference, see dotnet test.
For a long time, VSTest was the only test platform in .NET. Consequently, dotnet test
was exclusively designed for VSTest, with all command-line options tailored to VSTest.
The process involves invoking the VSTest
MSBuild target, which triggers other internal targets to run and ultimately runs vstest.console. All dotnet test
command-line options are translated to their equivalents in vstest.console.
dotnet test
is typically designed to run VSTest projects in VSTest mode, as that was its original purpose. However, to run MTP projects in dotnet test
VSTest mode, you can use the Microsoft.Testing.Platform.MSBuild. From the user's perspective, this support is enabled by setting the TestingPlatformDotnetTestSupport
MSBuild property to true (it is false by default for backward compatibility reasons). In simple terms, setting this property to true will cause Microsoft.Testing.Platform.MSBuild to change the VSTest
target behavior, redirecting it to call InvokeTestingPlatform
. This is an MSBuild target included in Microsoft.Testing.Platform.MSBuild, responsible for correctly running MTP test applications as executables. This means that VSTest-specific command-line options are silently ignored in this mode, such as --logger
. This implies that there should be a way to pass MTP-specific command-line options, such as --report-trx
, which is equivalent to using --logger trx
in VSTest. Given the current limitations of the dotnet test
CLI, the only way to include MTP-specific arguments is by appending them after an additional --
. For instance, dotnet test -- --report-trx
.
Note
MSTest and NUnit use Microsoft.Testing.Extensions.VSTestBridge. When you set EnableMSTestRunner
or EnableNUnitRunner
(the properties used to enable MTP), your test project become supporting both VSTest and Microsoft.Testing.Platform.
In that case, if you are using VSTest mode of dotnet test
and not setting TestingPlatformDotnetTestSupport
to true, you are actually running completely with VSTest, as if EnableMSTestRunner
and EnableNUnitRunner
are not there.
Note
It's highly recommended that you set the TestingPlatformDotnetTestSupport
property in Directory.Build.props
. That way, you don't have to add it to every test project file, and you don't risk introducing a new project that doesn't set this property and end up with a solution where some projects are VSTest while others are Microsoft.Testing.Platform, which may not work correctly and is unsupported scenario.
The following command-line options of dotnet test
command in VSTest mode are supported by Microsoft.Testing.Platform. These options are build-specific and not passed down to VSTest, which is why they work well with MTP.
The list below described all dotnet test
command line options that are supported by Microsoft.Testing.Platform
:
-a|--arch <ARCHITECTURE>
--artifacts-path <ARTIFACTS_DIR>
-c|--configuration <CONFIGURATION>
-f|--framework <FRAMEWORK>
-e|--environment <NAME="VALUE">
--interactive
--no-build
--nologo
--no-restore
-o|--output <OUTPUT_DIRECTORY>
--os <OS>
-r|--runtime <RUNTIME_IDENTIFIER>
-v|--verbosity <LEVEL>
Tip
You can customize the command-line arguments of your test application via TestingPlatformCommandLineArguments
MSBuild property:
<PropertyGroup>
...
<TestingPlatformCommandLineArguments>--minimum-expected-tests 10</TestingPlatformCommandLineArguments>
</PropertyGroup>
For more information specific to running MTP projects in VSTest mode of dotnet test
, see Use Microsoft.Testing.Platform with VSTest mode of dotnet test
.
In dotnet test
VSTest mode, the --
is used to indicate the RunSettings arguments. Originally, dotnet test
was designed to pass those arguments as an MSBuild property called VSTestCLIRunSettings
. Therefore, when running MTP test applications in VSTest mode, we repurpose the value of VSTestCLIRunSettings
to represent the "application arguments".
When running dotnet test
in VSTest mode, it is recommended to avoid including both VSTest and Microsoft.Testing.Platform in the same solution.
This scenario is not officially supported, and you should be aware of the following:
--
will be treated as RunSettings arguments for VSTest projects.dotnet test
VSTest mode, you should use Microsoft.Testing.Platform.MSBuild
, pass MTP-specific command-line options after the extra --
, and set TestingPlatformDotnetTestSupport
to true
.Due to these issues, .NET has introduced a new dotnet test
mode specifically designed for MTP. We encourage MTP users to transition from the VSTest dotnet test
mode to the new mode with the .NET 10 SDK.
To address the issues encountered when running dotnet test
with MTP in VSTest mode, .NET introduced a new mode in the .NET 10 SDK that's specifically designed for MTP.
To enable this mode, add a dotnet.config
file to the root of the repository or solution.
[dotnet.test:runner]
name = "Microsoft.Testing.Platform"
Note
The format will change from dotnet.test:runner
to dotnet.test.runner
in .NET 10 SDK Preview 4.
Since this mode is specifically designed for Microsoft.Testing.Platform, neither TestingPlatformDotnetTestSupport
nor the additional --
are required.
Important
This mode is only compatible with Microsoft.Testing.Platform version 1.7.0 and later.
Important
If your test project supports VSTest but does not support MTP, an error will be generated.
Tip
You can customize the command-line arguments of your test application via TestingPlatformCommandLineArguments
MSBuild property:
<PropertyGroup>
...
<TestingPlatformCommandLineArguments>--minimum-expected-tests 10</TestingPlatformCommandLineArguments>
</PropertyGroup>
.NET feedback
.NET is an open source project. Select a link to provide feedback:
Training
Module
C# testing in Visual Studio - Training
Start testing your C# apps by using the testing tools in Visual Studio. Learn to write tests, use Test Explorer, create test suites, and apply the red, green, refactor pattern to write code.
Documentation
Unit testing C# with NUnit and .NET Core - .NET
Learn unit test concepts in C# and .NET Core through an interactive experience building a sample solution step-by-step using dotnet test and NUnit.
Best practices for writing unit tests - .NET
Learn best practices for writing unit tests that drive code quality and resilience for .NET Core and .NET Standard projects.
This article gives a brief overview of testing concepts, terminology, and tools for testing in .NET.