Home | History | Annotate | Download | only in runner
      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 id() {
     12 		return "4.10";
     13 	}
     14 
     15 	// android-changed
     16 	/** @hide - not needed for public API */
     17 	public static void main(String[] args) {
     18 		System.out.println(id());
     19 	}
     20 }
     21