blob: b4541abdec8ffbeb5a5e0df7f39d8a2889287ae7 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001package junit.runner;
2
3/**
4 * This class defines the current version of JUnit
5 */
6public class Version {
7 private Version() {
8 // don't instantiate
9 }
10
11 public static String id() {
12 return "3.8.1";
13 }
14}