Edit

Share via


Testing with 'dotnet test'

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:

  • VSTest mode: This is the default mode for 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.
  • Microsoft.Testing.Platform mode: Introduced with the .NET 10 SDK, this mode exclusively supports test applications built with Microsoft.Testing.Platform.

Tip

For CLI reference, see dotnet test.

VSTest mode of 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.

Run MTP projects with VSTest mode

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:

XML
<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.

Advanced technical details

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".

Mixing VSTest and Microsoft.Testing.Platform (MTP)

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:

  • VSTest-specific command-line options will only apply to VSTest projects and not to MTP test applications.
  • MTP-specific command-line options provided after -- will be treated as RunSettings arguments for VSTest projects.

Key takeaways

  • To run MTP test applications in 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.
  • VSTest-oriented command-line options are silently ignored.

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.

Microsoft.Testing.Platform (MTP) mode of dotnet test

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.

ini
[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:

XML
<PropertyGroup>
  ...
  <TestingPlatformCommandLineArguments>--minimum-expected-tests 10</TestingPlatformCommandLineArguments>
</PropertyGroup>