Testing.Platform test runner with solution file #4105
-
I have a solution with 3 test projects. In the past I could do: When I migrate to the TestRunner, what is the best way to execute all tests in the solution? I would like all tests projects to execute but not my other console apps in the solution. Can I avoid listing all test projects? Something like
|
Beta Was this translation helpful? Give feedback.
Answered by
Evangelink
Nov 20, 2024
Replies: 1 comment 3 replies
-
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The new platform does integrate with
dotnet test
, please do check the extra property is turned on (see https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-integration-dotnet-test#dotnet-test---microsofttestingplatform-mode). If you are usingMSTest.Sdk
then no extra step is required :)Please keep me posted about the perf you are measuring, it's always good to get more data!