Java tools for combining runtime with scope

Are there any free Java tools (preferably Eclipse) that can provide indicators for how often the code is executed (based on the recorded run) and side by side with coverage? I'm not sure there is a metric to measure this, but it seems like it would be interesting to see.

+5
source share
3 answers

Do you mean the launch of the application as in production? if in dev environment ... not sure if this is what you are looking for - http://insectj.sourceforge.net/

+2
source
0

SD Java Profiler collects profiling data in such a way as to generalize the scope of testing. Therefore, if you have profile data, you also display test coverage data; no need to compare with each other.

Not free and does not connect to eclipse, but uses the Java graphical interface.

0
source

All Articles