malicious mavericks
malicious mavericks

Reputation: 1

On Code-Coverage

Language : JAVA

I am trying to use a test code to carry out code coverage analysis over a main code. I want to know how much does this main code use up the test code. How to make it possible?

Upvotes: 0

Views: 93

Answers (1)

soyeb84
soyeb84

Reputation: 72

Following is the list(not exhaustive) of code coverage tools for Java:

  • JCov
  • JaCoCo
  • Clover

You can find further here : Java Code Coverage Tools

Upvotes: 1

Related Questions