Reputation: 317
I want to know that if there is any easy to use tool, for Java, to perform following operations -
Upvotes: 2
Views: 1391
Reputation: 6021
You can use a static code analyzer such as SourceMonitor. There you can inspect per-method calls and see if a class contains methods that are not called.
Upvotes: 2
Reputation: 25929
There are tools like Structure 101 and IDEs like Intellij that provide dependencies analysis
Upvotes: 1
Reputation: 62469
If you are using eclipse you can install the CodePro plugin. It has tools to test code coverage. Instructions here: http://code.google.com/javadevtools/codepro/doc/installation/updatesite_3.5.html
Upvotes: 1