]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-52_1/main/tests/core/src/com/ibm/icu/dev/test/rbbi/TestAll.java
Clean up imports.
[Dictionary.git] / jars / icu4j-52_1 / main / tests / core / src / com / ibm / icu / dev / test / rbbi / TestAll.java
1 /*
2  *******************************************************************************
3  * Copyright (C) 1996-2004, International Business Machines Corporation and    *
4  * others. All Rights Reserved.                                                *
5  *******************************************************************************
6  */
7 package com.ibm.icu.dev.test.rbbi;
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 TestAll extends TestGroup {
15
16     public static void main(String[] args) {
17         new TestAll().run(args);
18     }
19
20     public TestAll() {
21         super(
22               new String[] {
23                   // Disabled for now; see comment in SimpleBITest for details
24                   // "SimpleBITest",
25                   "BreakIteratorTest",
26                   "RBBITest",
27                   "RBBIAPITest",
28                   "BreakIteratorRegTest",
29                   "RBBITestExtended",
30                   "RBBITestMonkey"
31               },
32               " BreakIterator and RuleBasedBreakIterator Tests");
33     }
34
35     public static final String CLASS_TARGET_NAME = "RBBI";
36 }