| Java Doc By Examples | |
| Prev Class | Next Class | Frames | No Frames |
| Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Objectjunit.runner.VersionMethods inherited from class java.lang.Object | |
clone, equals, extends Object> getClass, finalize, hashCode, notify, notifyAll, toString, wait, wait, wait | |
1: 2: import junit.runner.Version; 3: import org.junit.internal.runners.OldTestClassRunner; 4: ... 5: public Result runMain(String... args) { 6: System.out.println("JUnit version " + Version.id()); 7: List<Class<?>> classes= new ArrayList<Class<?>>(); 8: ... 9: public String getVersion() { 10: return Version.id(); 11: }