blob: e8cba6916f79d12dea64e1f1a7c527571a220d2a [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
/*
*******************************************************************************
* Copyright (C) 1996-2014, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package android.icu.dev.test.impl;
import android.icu.dev.test.TestFmwk.TestGroup;
/**
* Top level test used to run all other tests as a batch.
*/
public class TestAll extends TestGroup {
public static void main(String[] args) throws Exception {
new TestAll().run(args);
}
public TestAll() {
super("android.icu.dev.test.util",
new String[] {
"ICUServiceTest",
"ICUServiceThreadTest",
"ICUBinaryTest",
"SimplePatternFormatterTest",
"TextTrieMapTest"
},
"Test miscellaneous implementation utilities");
}
public static final String CLASS_TARGET_NAME = "Impl";
}