]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-4_2_1-src/src/com/ibm/icu/dev/test/translit/TestAll.java
go
[Dictionary.git] / jars / icu4j-4_2_1-src / src / com / ibm / icu / dev / test / translit / TestAll.java
1 //##header J2SE15
2 /*
3  *******************************************************************************
4  * Copyright (C) 1996-2009, International Business Machines Corporation and    *
5  * others. All Rights Reserved.                                                *
6  *******************************************************************************
7  */
8 package com.ibm.icu.dev.test.translit;
9
10 import com.ibm.icu.dev.test.TestFmwk.TestGroup;
11
12 /**
13  * Top level test used to run all other tests as a batch.
14  */
15
16 public class TestAll extends TestGroup {
17     public static void main(String[] args) {
18         new TestAll().run(args);
19     }
20
21     public TestAll() {
22         super(new String[] {
23                 "AnyScriptTest",
24                 "CompoundTransliteratorTest",
25                 "ErrorTest",
26                 "JamoTest",
27                 "ReplaceableTest",
28                 "RoundTripTest",
29                 "TransliteratorTest",
30                 "UnicodeSetTest",
31 //#if defined(FOUNDATION10) || defined(J2SE13) || defined(J2SE14)
32 //#else
33                 "RegexUtilitiesTest",
34 //#endif
35 //#if defined(FOUNDATION10) || defined(J2SE13)
36 //#else
37                 "UnicodeMapTest",
38 //#endif
39         });
40     }
41
42     public static final String CLASS_TARGET_NAME = "Translit";
43 }