blob: 050aa66324816acaa65d0484c7cee40cc8a44fb3 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 1996-2000, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/test/topleveltest/Attic/TestAll.java,v $
* $Date: 2000/03/10 03:47:47 $
* $Revision: 1.8 $
*
*****************************************************************************************
*/
package com.ibm.test.topleveltest;
import com.ibm.test.TestFmwk;
import java.text.*;
import java.util.*;
/**
* @test
* @summary General test of UnicodeSet
*/
public class TestAll extends TestFmwk {
public static void main(String[] args) throws Exception {
new TestAll().run(args);
}
public void TestBigNumberFormat() throws Exception{
run(new com.ibm.test.bnf.BigNumberFormatTest());
}
public void TestCompression1() throws Exception{
run(new com.ibm.test.compression.DecompressionTest());
}
public void TestCompression2() throws Exception{
run(new com.ibm.test.compression.ExhaustiveTest());
}
public void TestNormalizer1() throws Exception{
run(new com.ibm.test.normalizer.BasicTest());
}
public void TestNormalizer2() throws Exception {
run(new com.ibm.test.normalizer.ExhaustiveTest());
}
public void TestRuleBasedNumberFormat1() throws Exception {
run(new com.ibm.test.rbnf.RbnfTest());
}
public void TestRulebasedNumberFormat2() throws Exception {
run(new com.ibm.test.rbnf.RbnfRoundTripTest());
}
public void TestRuleBasedBreakIteartor1() throws Exception {
run(new com.ibm.test.rbbi.SimpleBITest());
}
public void TestRuleBasedBreakIteartor2() throws Exception {
run(new com.ibm.test.rbbi.BreakIteratorTest());
}
public void TestTranslit1() throws Exception {
run(new com.ibm.test.translit.UnicodeSetTest());
}
public void TestTranslit2() throws Exception {
run(new com.ibm.test.translit.TransliteratorTest());
}
public void TestSearch() throws Exception {
run(new com.ibm.test.search.SearchTest());
}
}