summaryrefslogtreecommitdiff
path: root/android_icu4j/src/main/tests/android/icu/dev/test/TestAllCollate.java
blob: 654efa2a858216bf2a823fa894528201c49d5f97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* GENERATED SOURCE. DO NOT MODIFY. */
/*
 *******************************************************************************
 * Copyright (C) 1996-2009, International Business Machines Corporation and    *
 * others. All Rights Reserved.                                                *
 *******************************************************************************
 */
package android.icu.dev.test;

import android.icu.dev.test.TestFmwk.TestGroup;
import org.junit.runner.RunWith;
import android.icu.junit.IcuTestGroupRunner;

/**
 * Top level test used to run all other tests as a batch.
 */
@RunWith(IcuTestGroupRunner.class)
public class TestAllCollate extends TestGroup {

    public static void main(String[] args) {
        new TestAllCollate().run(args);
    }

    public TestAllCollate() {
        super(
              new String[] {
                  "android.icu.dev.test.collator.TestAll",
                  "android.icu.dev.test.format.GlobalizationPreferencesTest",
                  "android.icu.dev.test.format.RbnfLenientScannerTest",
                  "android.icu.dev.test.search.SearchTest",
                  "android.icu.dev.test.util.ICUResourceBundleCollationTest",
                  "android.icu.dev.test.util.LocaleAliasCollationTest",
                  "android.icu.dev.test.util.ULocaleCollationTest",
              },
              "All tests in ICU collation");
    }

    public static final String CLASS_TARGET_NAME  = "Collate";
}