Revision: 1771 Author: [email protected] Date: Thu Dec 10 02:42:02 2009 Log: Added description of how to use Cobertura (fixes issue 250) http://code.google.com/p/simal/source/detail?r=1771
Modified: /wiki/CodeAuditing.wiki ======================================= --- /wiki/CodeAuditing.wiki Mon Apr 27 17:36:25 2009 +++ /wiki/CodeAuditing.wiki Thu Dec 10 02:42:02 2009 @@ -14,6 +14,13 @@ All tests are run by the continuous integration server at least once every night and after a change is detected in SVN. += Cobertura test coverage reports = + +[http://cobertura.sourceforge.net/ Cobertura] is a tool for generating reports on unit test coverage. It can help you in assessing how well you code is covered by the unit tests and which parts need some more attention. +It is integrated with a Maven plugin and forms part of the site reports. It can be run on your local machine by executing {{{mvn site}}}. +After Maven has successfully finished you can view the reports by opening the page {{{target/site/index.html}}} and navigate to {{{Project Reports > Cobertura Test Coverage}}}. +The Project Reports section also displays the reports of some other useful tools that are discussed below. + = Find Bugs = [http://findbugs.sourceforge.net/ FindBugs™] is a program to find bugs in Java programs. It looks for instances of "bug patterns" --- code instances that are likely to be errors. -- You received this message because you are subscribed to the Google Groups "Simal Commits" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/simal-commits?hl=en.
