]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-4_4_2-src/main/tests/translit/src/com/ibm/icu/dev/test/TestAllTranslit.java
go
[Dictionary.git] / jars / icu4j-4_4_2-src / main / tests / translit / src / com / ibm / icu / dev / test / TestAllTranslit.java
1 /*\r
2  *******************************************************************************\r
3  * Copyright (C) 1996-2009, International Business Machines Corporation and    *\r
4  * others. All Rights Reserved.                                                *\r
5  *******************************************************************************\r
6  */\r
7 package com.ibm.icu.dev.test;\r
8 \r
9 import com.ibm.icu.dev.test.TestFmwk.TestGroup;\r
10 \r
11 /**\r
12  * Top level test used to run all other tests as a batch.\r
13  */\r
14 public class TestAllTranslit extends TestGroup {\r
15 \r
16     public static void main(String[] args) {\r
17         new TestAllTranslit().run(args);\r
18     }\r
19 \r
20     public TestAllTranslit() {\r
21         super(\r
22               new String[] {\r
23                   "com.ibm.icu.dev.test.translit.TestAll",\r
24                   // funky tests of test code\r
25                   // "com.ibm.icu.dev.test.util.TestBNF",\r
26                   // "com.ibm.icu.dev.test.util.TestBagFormatter",\r
27               },\r
28               "All tests in ICU translit");\r
29     }\r
30 \r
31     public static final String CLASS_TARGET_NAME  = "Translit";\r
32 }\r