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?
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
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
Last edited by Murali; April 14th, 2012 at 02:09 AM.
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