run tests in mstest without compiling/building

前端 未结 3 668
长情又很酷
长情又很酷 2021-02-19 09:35

is there a way? do I have to wait for building every time I start the test? I want to build from visual studio not from test

thanks

3条回答
  •  一整个雨季
    2021-02-19 10:12

    Any changes to source code cause compilation, because in order to run tests VS needs up to date DLL with tests.

    If you have already compiled project then you can run test multiple times without compilation.

    PS: I run MSTest using TestDriven.NET as for me it is faster.

提交回复
热议问题