File: Version.java

package info (click to toggle)
junit4 4.13.1-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 4,520 kB
  • sloc: java: 31,097; javascript: 1,339; xml: 751; makefile: 2; sh: 1
file content (18 lines) | stat: -rw-r--r-- 281 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package junit.runner;

/**
 * This class defines the current version of JUnit
 */
public class Version {
	private Version() {
		// don't instantiate
	}

	public static String id() {
		return "4.13.1";
	}
	
	public static void main(String[] args) {
		System.out.println(id());
	}
}