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