blob: ded21fdb52fa23e7e93d26084d57c2fdb5814748 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 1996-2010, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.dev.test.lang;
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
/**
* Top level test used to run character property tests.
*/
public class TestAll extends TestGroup {
public static void main(String[] args) throws Exception {
new TestAll().run(args);
}
public TestAll() {
super(
new String[] {
"TestCharacter",
"TestUScript",
"TestUScriptRun",
"UnicodeSetTest",
"UnicodeSetStringSpanTest"
},
"Character and Script Tests");
}
public static final String CLASS_TARGET_NAME = "Property";
}