blob: 6bff346614bc855e01fb8f58a2b5207b1f04b6bb [file] [log] [blame]
//##header
/*
*******************************************************************************
* Copyright (C) 1996-2005, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.dev.test;
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.format.TestAll",
"com.ibm.icu.dev.test.compression.TestAll",
"com.ibm.icu.dev.test.rbbi.TestAll",
"com.ibm.icu.dev.test.translit.TestAll",
"com.ibm.icu.dev.test.search.SearchTest", // not a group
"com.ibm.icu.dev.test.collator.TestAll",
"com.ibm.icu.dev.test.shaping.ArabicShapingRegTest",
"com.ibm.icu.dev.test.calendar.TestAll",
"com.ibm.icu.dev.test.timezone.TestAll",
"com.ibm.icu.dev.test.lang.TestAll",
"com.ibm.icu.dev.test.normalizer.TestAll",
"com.ibm.icu.dev.test.util.TestAll",
"com.ibm.icu.dev.test.iterator.TestUCharacterIterator", // not a group
"com.ibm.icu.dev.test.bigdec.DiagBigDecimal", // not a group
"com.ibm.icu.dev.test.impl.TestAll",
"com.ibm.icu.dev.test.stringprep.TestAll",
"com.ibm.icu.dev.test.timescale.TestAll",
"com.ibm.icu.dev.test.charsetdet.TestCharsetDetector",
//#ifndef FOUNDATION
"com.ibm.icu.dev.test.serializable.SerializableTest" // *is* a group
//#endif
},
"All tests in ICU");
}
public static final String CLASS_TARGET_NAME = "ICU";
}