01: /*
02: *******************************************************************************
03: * Copyright (C) 1996-2004, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */
07: package com.ibm.icu.dev.test.lang;
08:
09: import com.ibm.icu.dev.test.TestFmwk.TestGroup;
10:
11: public class TestCharacter extends TestGroup {
12: public static void main(String[] args) {
13: new TestCharacter().run(args);
14: }
15:
16: public TestCharacter() {
17: super (new String[] { "UCharacterTest", "UCharacterCaseTest",
18: "UCharacterIteratorTest", "UCharacterCategoryTest",
19: "UCharacterDirectionTest", "UPropertyAliasesTest",
20: "UTF16Test", "UCharacterSurrogateTest" },
21: "Character Property and UTF16 Tests");
22: }
23: }
|