01: /*
02: *******************************************************************************
03: * Copyright (C) 2003-2005, International Business Machines Corporation and *
04: * others. All Rights Reserved. *
05: *******************************************************************************
06: */
07: package com.ibm.icu.dev.test.stringprep;
08:
09: import com.ibm.icu.dev.test.TestFmwk.TestGroup;
10:
11: /**
12: * @author ram
13: *
14: * To change the template for this generated type comment go to
15: * Window>Preferences>Java>Code Generation>Code and Comments
16: */
17: public class TestAll extends TestGroup {
18:
19: public static void main(String[] args) throws Exception {
20: new TestAll().run(args);
21: }
22:
23: public TestAll() {
24: super (new String[] { "TestIDNA", "TestStringPrep",
25: "TestIDNARef", "IDNAConformanceTest", },
26: "StringPrep and IDNA test");
27: }
28:
29: public static final String CLASS_TARGET_NAME = "StringPrep";
30:
31: }
|