KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > junit > runner > Version


1 package junit.runner;
2
3 /**
4  * This class defines the current version of JUnit
5  */

6 public class Version {
7     private Version() {
8         // don't instantiate
9
}
10
11     public static String JavaDoc id() {
12         return "4.3.1";
13     }
14     
15     public static void main(String JavaDoc[] args) {
16         System.out.println(id());
17     }
18 }
19
Popular Tags