]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-4_8_1_1/main/tests/core/src/com/ibm/icu/dev/test/timescale/TestAll.java
Added flags.
[Dictionary.git] / jars / icu4j-4_8_1_1 / main / tests / core / src / com / ibm / icu / dev / test / timescale / TestAll.java
1 /*
2  **************************************************************************
3  * Copyright (C) 2004, International Business Machines Corporation and    *
4  * others. All Rights Reserved.                                           *
5  **************************************************************************
6  *
7  */
8
9 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(
20             new String[] {
21                 "TimeScaleAPITest",
22                 "TimeScaleDataTest",
23                 "TimeScaleMonkeyTest",
24             },
25             "All TimeScale tests");
26     }
27
28     public static void main(String[] args)
29     {
30         new TestAll().run(args);
31     }
32
33     public static final String CLASS_TARGET_NAME  = "TimeScale";
34 }