blob: f4f970dc59ce309170f470cef128d2e6986b6447 [file] [log] [blame]
//##header
/*
*******************************************************************************
* Copyright (C) 1996-2006, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
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",
//#ifndef FOUNDATION
"RandomCollator",
//#endif
"UCAConformanceTest",
// don't test Search API twice!
//"com.ibm.icu.dev.test.search.SearchTest"
},
"All Collation Tests"
);
}
public static final String CLASS_TARGET_NAME = "Collator";
}