01: /**
02: *******************************************************************************
03: * Copyright (C) 2006, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: *
07: *******************************************************************************
08: */package com.ibm.icu.dev.test.charset;
09:
10: import com.ibm.icu.dev.test.TestFmwk.TestGroup;
11:
12: /**
13: * Top level test used to run all collation and search tests as a batch.
14: */
15: public class TestAll extends TestGroup {
16: public static void main(String[] args) {
17: new TestAll().run(args);
18: }
19:
20: public TestAll() {
21: super (new String[] { "TestCharset", "TestConversion" },
22: "All ICU Charset Tests");
23: }
24:
25: public static final String CLASS_TARGET_NAME = "Charset";
26: }
|