ICU-5489 initial addition of Bidi code
X-SVN-Rev: 21637
This commit is contained in:
parent
4a36c3820b
commit
ead318758f
40
icu4j/src/com/ibm/icu/dev/test/bidi/TestAll.java
Normal file
40
icu4j/src/com/ibm/icu/dev/test/bidi/TestAll.java
Normal file
@ -0,0 +1,40 @@
|
||||
/*
|
||||
*******************************************************************************
|
||||
* Copyright (C) 2001-2007, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
*******************************************************************************
|
||||
*/
|
||||
|
||||
package com.ibm.icu.dev.test.bidi;
|
||||
|
||||
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
|
||||
|
||||
/**
|
||||
* Top level test used to run all other tests as a batch.
|
||||
*/
|
||||
public class TestAll extends TestGroup {
|
||||
|
||||
public static void main(String[] args) {
|
||||
new TestAll().run(args);
|
||||
}
|
||||
|
||||
public TestAll() {
|
||||
super(
|
||||
new String[] {
|
||||
"com.ibm.icu.dev.test.bidi.TestCharFromDirProp",
|
||||
"com.ibm.icu.dev.test.bidi.TestBidi",
|
||||
"com.ibm.icu.dev.test.bidi.TestInverse",
|
||||
"com.ibm.icu.dev.test.bidi.TestReorder",
|
||||
"com.ibm.icu.dev.test.bidi.TestFailureRecovery",
|
||||
"com.ibm.icu.dev.test.bidi.TestMultipleParagraphs",
|
||||
"com.ibm.icu.dev.test.bidi.TestReorderingMode",
|
||||
"com.ibm.icu.dev.test.bidi.TestReorderRunsOnly",
|
||||
"com.ibm.icu.dev.test.bidi.TestStreaming",
|
||||
"com.ibm.icu.dev.test.bidi.TestClassOverride",
|
||||
"com.ibm.icu.dev.test.bidi.TestCompatibility"
|
||||
},
|
||||
"Bidi tests");
|
||||
}
|
||||
|
||||
public static final String CLASS_TARGET_NAME = "Bidi";
|
||||
}
|
Loading…
Reference in New Issue
Block a user