source: ccr/trunk/nhin-vista/projects/NHINC/Current/ThirdParty/JUnit/junit/runner/Version.java.template@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 284 bytes
Line 
1package 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 "@version@";
13 }
14
15 public static void main(String[] args) {
16 System.out.println(id());
17 }
18}
Note: See TracBrowser for help on using the repository browser.