Is there any automated testing tool or framework which will test our Java code without writing any piece of code in test cases from developer view?
Printable View
Is there any automated testing tool or framework which will test our Java code without writing any piece of code in test cases from developer view?
From Developer point of view A unit test provides a strict, written contract that the piece of code must satisfy. As a result, it affords several benefits.
1) Find Problems Early
2) Facilitates changes
3) Simplifies Integration
4) Documentation
5) Design
Test it for what?
Javac tests your java code to see if can be compiled.
Do you mean static code analysis?
Static program analysis - Wikipedia, the free encyclopedia
List of tools for static code analysis - Wikipedia, the free encyclopedia