]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-52_1/main/tests/core/src/com/ibm/icu/dev/test/lang/TestCharacter.java
Added flags.
[Dictionary.git] / jars / icu4j-52_1 / main / tests / core / src / com / ibm / icu / dev / test / lang / TestCharacter.java
1 /*
2  *******************************************************************************
3  * Copyright (C) 1996-2008, International Business Machines Corporation and    *
4  * others. All Rights Reserved.                                                *
5  *******************************************************************************
6  */
7 package com.ibm.icu.dev.test.lang;
8
9 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(
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 }