Support MS Test 2
See original GitHub issue{
"version": "1.0.0-*",
"testRunner": "mstest",
"dependencies": {
"MSTest.TestAdapter": "1.1.8-rc",
"MSTest.TestFramework": "1.0.8-rc",
"Microsoft.NETCore.App": {
"version": "1.1.0",
"type": "platform"
},
"dotnet-test-mstest": "1.1.2-preview",
},
"frameworks": {
"netcoreapp1.1": {
"imports": [
"dnxcore50",
"portable-net45+win8"
]
}
}
}
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:13 (8 by maintainers)
Top Results From Across the Web
Unit testing C# with MSTest and .NET
Learn unit test concepts in C# and .NET through an interactive experience building a sample solution step-by-step using dotnet test and ...
Read more >Most Complete MSTest Framework Tutorial Using .Net Core
This MSTest Tutorial for beginners and professionals will help you learn how to use MSTest framework with Selenium C# for performing Selenium ...
Read more >MSTest Framework C# Automated Selenium Testing ...
MSTest Framework C# Automated testing with Selenium and Appium. Run your tests on +3000 browsers and mobile devices.
Read more >MSTest.TestFramework 3.1.1
MSTest is Microsoft supported Test Framework. This package includes the libraries for writing tests with MSTest. To ensure discovery and execution of your...
Read more >microsoft/testfx: MSTest framework and adapter
This is a fully supported, open source and cross-platform implementation of the MSTest test framework with which to write tests targeting .NET Framework,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I wrote an MSTest extension. It started out for private use, but I recently introduced it into one of my work projects too. Works well so far, but there are open issues.
Beware that it targets .net6 only. However, feel free to open an issue if there’s the need to target other framework versions.
@kurtschelfthout I noticed MSTest v2 now has https://github.com/Microsoft/testfx-docs/blob/master/RFCs/003-Customize-Running-Tests.md . I played with it yesterday and it seems to me that by writing a proper implementation for
ITestMethod.Invoke
, something like FsCheck.xUnit’sProperty
attribute can be done for MS Test.If you agree, can we reopen this ticket? I would like to work on this.