|
Summary of the new JUnit 4 style:
|
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. JUnit is Open Source Software, released under the Common Public License Version 1.0 and hosted on SourceForge. - JUnit Home (Official) Tutorials and Articals- JUnit Reloaded (OnJava , 07 Dec, 2006) IDE RelatedTip: JUnit 4.0 only comes with a textual TestRunner. For graphical feedback, most major IDE's will support JUnit 4 soon. In the meantime, you can run JUnit 4 tests in a JUnit 3 environment by adding the following method to each test class: (Ref: http://junit.sourceforge.net/) public static Test suite(){
return new JUnit4TestAdapter (ThisClass.class);
}
Build Systems RelatedAnt
Forums and Mailing Lists- JUnit Official Mailing List at Yahoo
|