I have a large test suite in a .NET Core project. I can use the Test Explorer window to select a few tests to run.
I can also run the whole test suite on the command line with dotnet test
. Is there a way to run only one (or a few) tests on the command line?
-method
and-class
aren't available in 1.1 anymore and you'll get an error:MSBUILD: error MSB1001: Unkown switch. Switch: -method
– Saltzman