Reputation: 2007
I have checked ReportUnit and it only supports NUnit 2 results. I couldn't use NUnit 3 results with ReportUnit.
Upvotes: 0
Views: 573
Reputation: 6042
NUnit3 has the option to print results in the same format as NUnit2 - this may be the easiest workaround until "ReportUnit" supports NUnit3 natively.
Use the command line option:
--result=yourfilename.xml;format=nunit2
Upvotes: 0