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