Is there an API for running Visual Studio Unit Tests programmatically?

前端 未结 4 995
灰色年华
灰色年华 2020-12-16 14:41

Is there an API for running Visual Studio Unit Tests programmatically?

Running MSTests.exe with Process.Start() does not work in the current scenario. What I\'m look

4条回答
  •  甜味超标
    2020-12-16 14:56

    After taking a deep dive with reflector into MSTest.exe and further down into the Visual Studio Unit Test stack, I found that the API used by MSTest is sealed up and made private so that i cannot be used from the outside.

提交回复
热议问题