vote up 2 vote down star

I've been looking for a code coverage viewer aimed at inspecting live Java applications, mostly webapps running inside an application container like Tomcat. Sure, there are a number of decent tools for getting automatic reports of unit test coverage, but my aim is more like learning in real time what an unfamiliar Java app does e.g. on a specific user interaction.

The Eclipse Java debugger (with JPDA for remote debugging) is really useful, but only if you are already familiar with the application's architecture. And in theory, I could take some coverage tool and set it up to auto-refresh static HTML coverage reports every two seconds, but this is far from optimal.

For Adobe Flex, FlexCover does just what I want by providing a coverage viewer tool that visualizes the coverage in nearly real time, and it's relatively simple to set up at least for somebody who knows the stuff. So is there a similar easy-to-set-up GUI tool, free or non-free, for Java?

flag

2 Answers

vote up 1 vote down check

Hi Eemeli,

You can view Clover's coverage data generated by a web application, in Eclipse, without the need to start the web server from Eclipse.

The trick is to configure the initString in the Eclipse Clover Config screen to point to the same clover.db that your webapp is using:

Clover initString Configuration

And - you need to ensure you are using a threaded flushpolicy. The clover-maven2-plugin uses one by default. If you are using Ant, you will need to set it explicitly on <clover-setup/>.

You must also ensure you are using the same version of Clover in both Eclipse and your build tool.

I have tested this locally - and it works quite well!

Please let me know how you go.

Cheers, Nick (Atlassian-Clover)

link|flag
Yep, got it working after some amount of struggling with Maven build problems. Thanks! – Eemeli Kantola May 22 at 17:01
vote up 1 vote down

Have a look at clover. It may be what you are looking for. Not free, but nice.

link|flag
Yeah, seems to work reasonably well, except I forgot to mention initially that it's webapps I'm mostly dealing with, so I would need to boot the application container manually from Eclipse. Maybe that's what is needed anyway, but it's getting a bit more complicated... – Eemeli Kantola May 21 at 22:05

Your Answer

Get an OpenID
or

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