How to run ALL tests in my solution using command line MSTest.exe?

后端 未结 4 757
挽巷
挽巷 2020-12-14 15:20

According to MSDN here and discussed here, we can use MSTest.exe to run tests from command line - which is sweet and faster than running within the IDE (especia

4条回答
  •  甜味超标
    2020-12-14 15:45

    You might want to have a look at the Gallio.Echo test runner which comes with the Gallio test automation platform. It's a free (OSS) package with many convenient reporting tools and test runners and which supports most the existing test frameworks (MbUnit, NUnit, MSTest, xUnit, etc.)

    alt text

    More specifically, Gallio.Echo is a versatile command line test runner. You can specify a list of test assemblies, various filters, and many extra options. Gallio consolidates the test results in a single report (Xml, Html, Zip, etc.)

提交回复
热议问题