Is there any plugin to some IDE that show the number of times a line is run in the code?

Eclipse's ECLemma does not seem to have a setting to show execution times at the left-hand-side bar, like in the service WebCat.

link|improve this question

3  
Hmm, this might actually be better suited for SO. – Michael Myers Mar 22 '10 at 22:05
@mmyers - plugins for an IDE can be answered on SU, but in this case, it's very specific, so it could have more answers on SO indeed. – Gnoupi Mar 23 '10 at 20:33
feedback

migrated from superuser.com Mar 24 '10 at 8:10

This question came from our site for computer enthusiasts and power users.

5 Answers

up vote 1 down vote accepted

I think the eclipse test and performance tools plateform would be able to help you with this. It includes a profiler which will instrument your code and provide the information you want. Careful with profiling, it can be a heavy performance hit depending on how many functions/classes you monitor

link|improve this answer
feedback

Have a look at the breakpoint properties in eclipse may be you can configure a variable to capture the hitcount

link|improve this answer
feedback

The focus of code coverage is only if a line is executed or not. Nothing more.

To get counters you would have to look at profiler software and not code coverage.

There are plugins for both Eclipse and Netbeans. I am not sure if they show counters per line, but I think that they show counters per method, which might be what you want...

alt text

link|improve this answer
feedback

What's wrong with writing to a log file or to screen or using a counter?

link|improve this answer
feedback

In NetBeans 6.8 there is a nice code coverage tool which does pretty much that what you want but actually only for ruby. (right click project -> code coverage)

But could you use an ant task or maven plugin? Then Take a look at this list

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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