]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-4_8_1_1/main/tests/translit/src/com/ibm/icu/dev/test/translit/TestAll.java
Added flags.
[Dictionary.git] / jars / icu4j-4_8_1_1 / main / tests / translit / src / com / ibm / icu / dev / test / translit / TestAll.java
1 /*
2  *******************************************************************************
3  * Copyright (C) 1996-2010, International Business Machines Corporation and    *
4  * others. All Rights Reserved.                                                *
5  *******************************************************************************
6  */
7 package com.ibm.icu.dev.test.translit;
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
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                 "AnyScriptTest",
23                 "CompoundTransliteratorTest",
24                 "ErrorTest",
25                 "JamoTest",
26                 "ReplaceableTest",
27                 "RoundTripTest",
28                 "TransliteratorTest",
29                 "RegexUtilitiesTest",
30                 "UnicodeMapTest",
31                 "ThreadTest"
32         });
33     }
34
35     public static final String CLASS_TARGET_NAME = "Translit";
36 }