Can Resharper produce an MSpec HTML report as well as the live Visual Studio test results?

StackOverflow https://stackoverflow.com/questions/10198177

  •  01-06-2021
  •  | 
  •  

문제

I would like to have the live results in the ReSharper Test Results window and the custom formatted MSpec HTML report. Is that possible?

도움이 되었습니까?

해결책

Not directly but you can export a unit test session run result to HTML:

enter image description here

다른 팁

First, gorohoroh's answer is correct (I've answered similar questions the same way). But, it sounds like you have a process where you want or have to deliver the last completed test results to the QA team. And you'd like to give them the fancy MSpec report (I'm a fan of that one, too).

Why not setup a continuous integration server that runs the build and tests and uses the native mspec.exe with the HTML report option (--html)?

Then, too, QA is not dependent on the results from a build on your personal workstation, but on a checked in version of the codebase.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top