blob: 2378c3b4df0ccb5881f7688acafdce9879b16a42 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 1996-2003, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/dev/test/collator/TestAll.java,v $
* $Date: 2004/01/10 23:45:33 $
* $Revision: 1.9 $
*
*****************************************************************************************
*/
package com.ibm.icu.dev.test.collator;
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
/**
* Top level test used to run all collation and search tests as a batch.
*/
public class TestAll extends TestGroup {
public static void main(String[] args) {
new TestAll().run(args);
}
public TestAll() {
super(
new String[] {
"CollationTest",
"CollationAPITest",
"CollationCurrencyTest",
//"CollationDanishTest", //Danish is already tested through data driven tests
"CollationDummyTest",
"CollationEnglishTest",
"CollationFinnishTest",
"CollationFrenchTest",
"CollationGermanTest",
"CollationIteratorTest",
"CollationKanaTest",
"CollationMonkeyTest",
"CollationRegressionTest",
"CollationSpanishTest",
"CollationThaiTest",
"CollationTurkishTest",
"G7CollationTest",
"LotusCollationKoreanTest",
"CollationMiscTest",
"CollationChineseTest",
"CollationServiceTest",
"RandomCollator",
// don't test Search API twice!
//"com.ibm.icu.dev.test.search.SearchTest"
},
"All Collation Tests"
);
}
public static final String CLASS_TARGET_NAME = "Collator";
}