1/*
2 *******************************************************************************
3 * Copyright (C) 1996-2010, 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
11/**
12 * Top level test used to run character property tests.
13 */
14public class TestAll extends TestGroup {
15    public static void main(String[] args) throws Exception {
16        new TestAll().run(args);
17    }
18
19    public TestAll() {
20        super(
21              new String[] {
22                  "TestCharacter",
23                  "TestUScript",
24                  "TestUScriptRun",
25                  "UnicodeSetTest",
26                  "UnicodeSetStringSpanTest"
27              },
28              "Character and Script Tests");
29    }
30
31    public static final String CLASS_TARGET_NAME = "Property";
32}
33