]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-4_2_1-src/src/com/ibm/icu/dev/test/bidi/TestAll.java
go
[Dictionary.git] / jars / icu4j-4_2_1-src / src / com / ibm / icu / dev / test / bidi / TestAll.java
1 //##header J2SE15
2 /*
3 *******************************************************************************
4 *   Copyright (C) 2001-2009, International Business Machines
5 *   Corporation and others.  All Rights Reserved.
6 *******************************************************************************
7 */
8
9 package com.ibm.icu.dev.test.bidi;
10
11 import com.ibm.icu.dev.test.TestFmwk.TestGroup;
12
13 /**
14  * Top level test used to run all other tests as a batch.
15  */
16 public class TestAll extends TestGroup {
17
18     public static void main(String[] args) {
19         new TestAll().run(args);
20     }
21
22     public TestAll() {
23         super(
24               new String[] {
25                   "com.ibm.icu.dev.test.bidi.TestCharFromDirProp",
26                   "com.ibm.icu.dev.test.bidi.TestBidi",
27                   "com.ibm.icu.dev.test.bidi.TestInverse",
28                   "com.ibm.icu.dev.test.bidi.TestReorder",
29                   "com.ibm.icu.dev.test.bidi.TestFailureRecovery",
30                   "com.ibm.icu.dev.test.bidi.TestMultipleParagraphs",
31                   "com.ibm.icu.dev.test.bidi.TestReorderingMode",
32                   "com.ibm.icu.dev.test.bidi.TestReorderRunsOnly",
33                   "com.ibm.icu.dev.test.bidi.TestStreaming",
34                   "com.ibm.icu.dev.test.bidi.TestClassOverride",
35 //#if defined(FOUNDATION10) || defined(J2SE13)
36 //#else
37                   "com.ibm.icu.dev.test.bidi.TestCompatibility",
38 //#endif
39               },
40               "Bidi tests");
41     }
42
43     public static final String CLASS_TARGET_NAME  = "Bidi";
44 }