I have a set of unit tests in a C# project in Visual Studio 2013. Is there a way to generate a report from the unit test results?
I need a report as evidence of time when the tests were run and for the results. I dont mean an online CI server report, I just mean a local file report. Are there any nice plugings for VS2013?
I looked into the NUnit
plugin with its XML output but its not very accurate, a lot of the data displayed was duplicated and inaccurate (for example my OS type). I'm currently sticking with the Visual Studio MSTest
testing framework for now.