|
Discover is an analysis tool that allows you to measure how thoroughly your programs have been tested.
Discover shows interactively and directly in the source code which basic-blocks (code sequences that always execute sequentially)
have been executed at least once and which have never been executed.
Using this information, you can perform actions or run specific
tests to eliminate these uncovered areas. Discover helps you identify untested code, so you can be sure you've checked your entire application, not just part
of it.
Discover displays the coverage data in real time, ie when your application is still running.
Discover can export coverage data.
Discover comes with a companion DLL that allows third parties
applications to read the raw coverage information allowing to generate any kind of reports, even source code listings of uncovered
code.
Discover can be started from the command line. Coverage data to
be collected in automated processes. The results of several sessions can be
merged, even if the source changed between sessions.
No source code modifications are required.
Discover works with D2 to D7, BDS2006 and D2007.
Discover is extremely simple and easy to use. Just compile your project with a detailed map file, load it into Discover and run your application.
|