]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-4_2_1-src/src/com/ibm/icu/dev/test/util/TestAll.java
icu4jsrc
[Dictionary.git] / jars / icu4j-4_2_1-src / src / com / ibm / icu / dev / test / util / TestAll.java
1 /*\r
2  *******************************************************************************\r
3  * Copyright (C) 1996-2009, International Business Machines Corporation and    *\r
4  * others. All Rights Reserved.                                                *\r
5  *******************************************************************************\r
6  */\r
7 package com.ibm.icu.dev.test.util;\r
8 \r
9 import com.ibm.icu.dev.test.TestFmwk.TestGroup;\r
10 \r
11 /**\r
12  * Top level test used to run all other tests as a batch.\r
13  */\r
14 public class TestAll extends TestGroup {\r
15     public static void main(String[] args) throws Exception {\r
16         new TestAll().run(args);\r
17     }\r
18 \r
19     public TestAll() {\r
20         super(\r
21               new String[] {\r
22             "VersionInfoTest",\r
23             "ICUResourceBundleTest",\r
24             "CompactArrayTest",\r
25             "StringTokenizerTest",\r
26             "CurrencyTest",\r
27             "UtilityTest",\r
28             "TrieTest",\r
29             "LocaleDataTest",\r
30             "ULocaleTest",\r
31             "LocaleAliasTest",\r
32             "DebugUtilitiesTest",\r
33             "LocaleBuilderTest",\r
34         },\r
35               "Test miscellaneous public utilities");\r
36     }\r
37 \r
38     public static final String CLASS_TARGET_NAME = "Util";\r
39 }\r
40 \r
41 \r