01: /*
02: **************************************************************************
03: * Copyright (C) 2004, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: **************************************************************************
06: *
07: */
08:
09: package com.ibm.icu.dev.test.timescale;
10:
11: import com.ibm.icu.dev.test.TestFmwk.TestGroup;
12:
13: /**
14: * Top level test used to run time scale tests as a batch.
15: */
16: public class TestAll extends TestGroup {
17:
18: public TestAll() {
19: super (new String[] { "TimeScaleAPITest", "TimeScaleDataTest",
20: "TimeScaleMonkeyTest", }, "All TimeScale tests");
21: }
22:
23: public static void main(String[] args) {
24: new TestAll().run(args);
25: }
26:
27: public static final String CLASS_TARGET_NAME = "TimeScale";
28: }
|