]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-4_8_1_1/main/tests/translit/src/com/ibm/icu/dev/test/TestAllTranslit.java
Added flags.
[Dictionary.git] / jars / icu4j-4_8_1_1 / main / tests / translit / src / com / ibm / icu / dev / test / TestAllTranslit.java
1 /*
2  *******************************************************************************
3  * Copyright (C) 1996-2009, International Business Machines Corporation and    *
4  * others. All Rights Reserved.                                                *
5  *******************************************************************************
6  */
7 package com.ibm.icu.dev.test;
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 public class TestAllTranslit extends TestGroup {
15
16     public static void main(String[] args) {
17         new TestAllTranslit().run(args);
18     }
19
20     public TestAllTranslit() {
21         super(
22               new String[] {
23                   "com.ibm.icu.dev.test.translit.TestAll",
24                   // funky tests of test code
25                   // "com.ibm.icu.dev.test.util.TestBNF",
26                   // "com.ibm.icu.dev.test.util.TestBagFormatter",
27               },
28               "All tests in ICU translit");
29     }
30
31     public static final String CLASS_TARGET_NAME  = "Translit";
32 }