 |
Quilt is a Java software development tool that measures coverage , the extent to which unit testing exercises the software under test. It is optimized for use with the JUnit unit test package, the Ant Java build facility, and the Maven project management toolkit. The last changelog entry was 2003-10-06 13:03:56 so the project is probably resting.
NoUnit shows you a picture of your code , and reveals how good your JUnit tests are. Gives you clear pictures of your code and tests (Green is good , Red is bad!). Can be extended to show any code pictures you want (Any view of your code , not just JUnit tests!)
InsECTJ A Generic Instrumentation Framework for Collecting Dynamic Information within Eclipse... ... a generic framework that enables the collection of various kinds of runtime information, such as data about the execution of various code entities and constructs. The framework lets users easily define how to process the collected information and is extensible to collect new types of information.
Jester finds code that is not covered by tests. Jester makes some change to your code, runs your tests, and if the tests pass Jester displays a message saying what it changed. Jester includes a script for generating web pages that show the changes made that did not cause the tests to fail. Jester is different than code coverage tools, because it can find code that is executed by the running of tests but not actually tested. Jester's approach is called mutation testing or automated error seeding. However, Jester is not meant as a replacement for code coverage tools, merely as a complementary approach.
GroboUtils: CodeCoverage is a tool to help you discover what parts of your code have not executed during unit tests.
JCoverage a suite of tools and technologies designed to improve your coverage and testing productivity. The aim is to reduce the 'code - test - diagnose - fix' cycle. jcoverage enables software projects to save time, money and effort by allowing programmers to monitor progress, catch defects and improve quality. measure the percentage of code that has been tested
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. It is based on jcoverage. Instruments Java bytecode after it has been compiled. Shows the percentage of lines and branches covered for each class, each package, and for the overall project. Shows the McCabe? cyclomatic code complexity of each class, and the average cyclomatic code complexity for each package, and for the overall product.
Coverlipse is an Eclipse plugin that visualizes the code coverage of JUnit Tests. It is unique for it integrates seamlessly in Eclipse. The coverage results are given directly after a JUnit run. This makes it the perfect tool for developers to recognize their tests fullfil their task. Block Coverage (also known as Statement Coverage)
See also java-source.net / code-coverage
|