blob: 6bd251bf009ec9aff123b63c91f776ce2b507708 [file] [log] [blame]
package junit.util;
/**
* This class defines the current version of JUnit
*/
public class Version {
private Version() {
// don't instantiate
}
public static String id() {
return "3.2";
}
}