1/*
2 *******************************************************************************
3 * Copyright (C) 1996-2010, International Business Machines Corporation and    *
4 * others. All Rights Reserved.                                                *
5 *******************************************************************************
6 */
7package com.ibm.icu.dev.test.collator;
8
9import com.ibm.icu.dev.test.TestFmwk.TestGroup;
10
11/**
12 * Top level test used to run all collation and search tests as a batch.
13 */
14public class TestAll extends TestGroup {
15    public static void main(String[] args) {
16        new TestAll().run(args);
17    }
18
19    public TestAll() {
20        super(
21              new String[] {
22                  "CollationTest",
23                  "CollationAPITest",
24                  "CollationCurrencyTest",
25                  "CollationCreationMethodTest",
26                  //"CollationDanishTest", //Danish is already tested through data driven tests
27                  "CollationDummyTest",
28                  "CollationEnglishTest",
29                  "CollationFinnishTest",
30                  "CollationFrenchTest",
31                  "CollationGermanTest",
32                  "CollationIteratorTest",
33                  "CollationKanaTest",
34                  "CollationMonkeyTest",
35                  "CollationRegressionTest",
36                  "CollationSpanishTest",
37                  "CollationThaiTest",
38                  "CollationTurkishTest",
39                  "G7CollationTest",
40                  "LotusCollationKoreanTest",
41                  "CollationMiscTest",
42                  "CollationChineseTest",
43                  "CollationServiceTest",
44                  "CollationThreadTest",
45                  //"RandomCollator", //Disabled until the problem in the test case is resolved #5747
46                  "UCAConformanceTest",
47                  // don't test Search API twice!
48                  //"com.ibm.icu.dev.test.search.SearchTest"
49                  "AlphabeticIndexTest"
50              },
51              "All Collation Tests"
52              );
53    }
54
55    public static final String CLASS_TARGET_NAME = "Collator";
56}
57