Junit
Junit
http://www.junit.org
[1,2] describe the Junit 3.x framework by using the following class diagram:
TestResult
<<Interface>>
Assert Test
*
TestCase
TestSuite
setUp()
runTest()
tearDown()
The new versions JUnit 4.x use annotations (require JDK 5 to run): @Before, @After, @Test
(for set up, tear down and test methods, respectively).
References