1 /* 2 ******************************************************************************* 3 * Copyright (C) 1996-2009, International Business Machines Corporation and * 4 * others. All Rights Reserved. * 5 ******************************************************************************* 6 */ 7 package com.ibm.icu.dev.test; 8 9 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 TestAllCollate extends TestGroup { 15 main(String[] args)16 public static void main(String[] args) { 17 new TestAllCollate().run(args); 18 } 19 TestAllCollate()20 public TestAllCollate() { 21 super( 22 new String[] { 23 "com.ibm.icu.dev.test.collator.TestAll", 24 "com.ibm.icu.dev.test.format.GlobalizationPreferencesTest", 25 "com.ibm.icu.dev.test.format.RbnfLenientScannerTest", 26 "com.ibm.icu.dev.test.search.SearchTest", 27 "com.ibm.icu.dev.test.util.ICUResourceBundleCollationTest", 28 "com.ibm.icu.dev.test.util.LocaleAliasCollationTest", 29 "com.ibm.icu.dev.test.util.ULocaleCollationTest", 30 }, 31 "All tests in ICU collation"); 32 } 33 34 public static final String CLASS_TARGET_NAME = "Collate"; 35 } 36