inquisitive
inquisitive

Reputation: 1680

Integrating OpenCover with xUnit

I am relatively new to the Visual Studio IDE and working on a C# project for which I am using xUnit framework to do testing.

I have planned to use the "OpenCover" tool for determining the code coverage. Could someone tell me how to integrate this tool with Visual Studio?

Upvotes: 3

Views: 2092

Answers (1)

ClickRick
ClickRick

Reputation: 1569

OpenCover itself is a command-line-only tool. In order to present the results "nicely" you need a visualiser, such as ReportGenerator (which will work fine with xUnit) or OpenCoverUI (which only claims to work with MSTest and NUnit).

Upvotes: 1

Related Questions