Reputation: 1976
Are there some tools or Eclipse plugin that could detect that a method hasn't been subject to a unit test (JUnit/TestNg)?
Thx in advance.
Upvotes: 2
Views: 518
Reputation: 308988
IntelliJ gives you code coverage - no plugins required. It reports % of lines covered by your tests and highlights which ones are executed and which ones have not.
Time to upgrade your IDE.
Upvotes: 0