Posts

Showing posts from 2014

JUnit Tutorial

JUnit   Tutorial JUnit is a unit testing framework for the Java programming language. JUnit has been important in the development of test-   driven development, and is one of a family of unit testing frameworks collectively known as xUnit that originated with JUnit. Download junit-4.10.jar  here Features 1.  JUnit is an open source framework which is used for writing & running tests. 2.  Provides Annotation to identify  the test methods. 3.  Provides Assertions for testing expected results. 4.  Provides Test runners for running tests. 5.  JUnit tests allow you to ...