blob: d8a50748ca2e19e95c4a13b7f2e416b432ee6f82 [file] [log] [blame]
/*
*******************************************************************************
* Copyright (C) 2003-2009, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.dev.test.stringprep;
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
/**
* @author ram
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class TestAll extends TestGroup {
public static void main(String[] args) throws Exception {
new TestAll().run(args);
}
public TestAll() {
super(
new String[] {
// disable these tests while translit is not available
// "TestIDNA",
// "TestStringPrep",
// "TestIDNARef",
"IDNAConformanceTest",
"TestStringPrepProfiles",
},
"StringPrep and IDNA test"
);
}
public static final String CLASS_TARGET_NAME = "StringPrep";
}