01: //##header
02: /*
03: *******************************************************************************
04: * Copyright (C) 1996-2006, International Business Machines Corporation and *
05: * others. All Rights Reserved. *
06: *******************************************************************************
07: */
08: package com.ibm.icu.dev.test.collator;
09:
10: import com.ibm.icu.dev.test.TestFmwk.TestGroup;
11:
12: /**
13: * Top level test used to run all collation and search tests as a batch.
14: */
15: public class TestAll extends TestGroup {
16: public static void main(String[] args) {
17: new TestAll().run(args);
18: }
19:
20: public TestAll() {
21: super (new String[] {
22: "CollationTest",
23: "CollationAPITest",
24: "CollationCurrencyTest",
25: //"CollationDanishTest", //Danish is already tested through data driven tests
26: "CollationDummyTest", "CollationEnglishTest",
27: "CollationFinnishTest", "CollationFrenchTest",
28: "CollationGermanTest", "CollationIteratorTest",
29: "CollationKanaTest", "CollationMonkeyTest",
30: "CollationRegressionTest", "CollationSpanishTest",
31: "CollationThaiTest", "CollationTurkishTest",
32: "G7CollationTest", "LotusCollationKoreanTest",
33: "CollationMiscTest", "CollationChineseTest",
34: "CollationServiceTest",
35: //#ifndef FOUNDATION
36: "RandomCollator",
37: //#endif
38: "UCAConformanceTest",
39: // don't test Search API twice!
40: //"com.ibm.icu.dev.test.search.SearchTest"
41: }, "All Collation Tests");
42: }
43:
44: public static final String CLASS_TARGET_NAME = "Collator";
45: }
|