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
  •  | 
  •  

Question

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

Était-ce utile?

La solution

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

enter image description here

Autres conseils

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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top