01: /*
02: *******************************************************************************
03: * Copyright (C) 1996-2004, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */
07: package com.ibm.icu.dev.test.rbbi;
08:
09: 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 (new String[] {
22: // Disabled for now; see comment in SimpleBITest for details
23: // "SimpleBITest",
24: "BreakIteratorTest", "RBBITest", "RBBIAPITest",
25: "BreakIteratorRegTest", "RBBITestExtended",
26: "RBBITestMonkey" },
27: " BreakIterator and RuleBasedBreakIterator Tests");
28: }
29:
30: public static final String CLASS_TARGET_NAME = "RBBI";
31: }
|