Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

do you know if there is any tool which makes structural coverage of java code? did Junit do this ? any links,documenetation which could help me? thanks

share|improve this question

3 Answers

Cobertura or Clover (commercial tool) are dedicated to that kind of task.

Sonar (based on these tools) is a more powerful tool to get quality indicators on your application.

share|improve this answer
thanks, but I'm searching free tool to download and use with junit tests – user281070 Apr 21 '10 at 14:47
thanks but I'm searching free tool to use with junit tests – user281070 Apr 21 '10 at 14:49

You can try Cobertura.

share|improve this answer
thanks pugmarx but I'm looking for free tool – user281070 Apr 21 '10 at 14:49
From cobertura.sourceforge.net: "Cobertura is a free Java tool that calculates the percentage of code accessed by tests. It can be used to identify which parts of your Java program are lacking test coverage." – pugmarx Apr 22 '10 at 5:42

See SD Test Coverage for a tool that can do this in extremely large systems with very low overhead.

share|improve this answer
thanks Ira, but I'm looking for free tool – user281070 Apr 21 '10 at 14:48
If you wanted a free tool, you should have said sosay so. – Ira Baxter Apr 21 '10 at 16:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.