1/*
2 *******************************************************************************
3 * Copyright (C) 1996-2008, International Business Machines Corporation and    *
4 * others. All Rights Reserved.                                                *
5 *******************************************************************************
6 */
7package com.ibm.icu.dev.test.lang;
8
9import com.ibm.icu.dev.test.TestFmwk.TestGroup;
10
11public class TestCharacter extends TestGroup {
12    public static void main(String[] args) {
13        new TestCharacter().run(args);
14    }
15
16    public TestCharacter() {
17        super(
18              new String[] {
19                  "UCharacterTest",
20                  "UCharacterCaseTest",
21                  "UCharacterCategoryTest",
22                  "UCharacterDirectionTest",
23                  "UPropertyAliasesTest",
24                  "UTF16Test",
25                  "UCharacterSurrogateTest",
26                  "UCharacterThreadTest"
27              },
28              "Character Property and UTF16 Tests");
29    }
30}
31