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.

Results 1 to 3 of 3

Thread: Java automated testing tools for Unit testing

  1. #1
    Junior Member
    Join Date
    Apr 2012
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Java automated testing tools for Unit testing

    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?


  2. #2
    Junior Member
    Join Date
    Apr 2012
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Java automated testing tools for Unit testing

    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.

  3. #3
    Super Moderator Sean4u's Avatar
    Join Date
    Jul 2011
    Location
    Tavistock, UK
    Posts
    637
    Thanks
    5
    Thanked 103 Times in 93 Posts

    Default Re: Java automated testing tools for Unit testing

    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

Similar Threads

  1. java testing
    By java_novice in forum Java Theory & Questions
    Replies: 7
    Last Post: March 13th, 2012, 10:38 AM
  2. Java error correcting, testing for a square issue i think
    By djl1990 in forum What's Wrong With My Code?
    Replies: 5
    Last Post: November 1st, 2011, 03:17 AM
  3. [SOLVED] Testing Java EE
    By serdar in forum What's Wrong With My Code?
    Replies: 1
    Last Post: August 16th, 2011, 04:39 AM
  4. Testing whether a list of URLs are active or not in java?
    By aybeeryu in forum Java Networking
    Replies: 1
    Last Post: June 3rd, 2011, 09:17 AM
  5. testing Java jsp/servlets
    By cgodfrey in forum JavaServer Pages: JSP & JSTL
    Replies: 2
    Last Post: March 30th, 2011, 03:44 PM