01: /*
02: *******************************************************************************
03: * Copyright (C) 1996-2005, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */
07: package com.ibm.icu.dev.test.util;
08:
09: import com.ibm.icu.dev.test.TestFmwk.TestGroup;
10:
11: /**
12: * Top level test used to run all other tests as a batch.
13: */
14: public class TestAll extends TestGroup {
15: public static void main(String[] args) throws Exception {
16: new TestAll().run(args);
17: }
18:
19: public TestAll() {
20: super (new String[] {
21: "VersionInfoTest",
22: // "ICUListResourceBundleTest",
23: // these tests fail since there is no ICULocaleData.jar to support it
24: // ICUResoureBundleTest supercedes the ICUListResourceBundleTest
25: "ICUResourceBundleTest", "CompactArrayTest",
26: "StringTokenizerTest", "CurrencyTest", "UtilityTest",
27: "TrieTest", "LocaleDataTest", "ULocaleTest",
28: "LocaleAliasTest" },
29: "Test miscellaneous public utilities");
30: }
31:
32: public static final String CLASS_TARGET_NAME = "Util";
33: }
|