posts/dotnet-10-testing/ #11
Replies: 1 comment 1 reply
-
|
Thanks for this overview. I've been stepping into MTP to make sure my .NET 10 project is always adopting the current best practices. It already uses:
I felt MTP was finally ready to adopt as well. It... mostly is. The main issue is documentation. There is a 20 year history of VSTest test configuration, old CI tricks, Your tip to explicitly
One exception to this is the change in how ignored tests are treated for the final exit code of a The MTP What this means if you want to run In this case, my <RunSettings>
<!-- General run configuration -->
<RunConfiguration>
<!-- https://learn.microsoft.com/en-us/dotnet/core/testing/selective-unit-tests?pivots=nunit#nunit-examples -->
<TestCaseFilter>FullyQualifiedName!~E2E.Tests</TestCaseFilter>
</RunConfiguration>
</RunSettings>Yes, I could use the MTP |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
posts/dotnet-10-testing/
.NET 10 replaces VSTest with Microsoft.Testing.Platform, bringing SDK-integrated testing with faster discovery, consistent behavior across …
https://daily-devops.net/posts/dotnet-10-testing/
Beta Was this translation helpful? Give feedback.
All reactions