blob: 236f324c517aff0cabc15c113cc937733ca74fe9 [file] [log] [blame]
/*
* @(#)$RCSfile: TestAll.java,v $ $Revision: 1.5 $ $Date: 2003/06/03 18:49:36 $
*
* (C) Copyright IBM Corp. 1998-2003. All Rights Reserved.
*
* The program is provided "as is" without any warranty express or
* implied, including the warranty of non-infringement and the implied
* warranties of merchantibility and fitness for a particular purpose.
* IBM will not be liable for any damages suffered by you as a result
* of using the Program. In no event will IBM be liable for any
* special, indirect or consequential damages or lost profits even if
* IBM has been advised of the possibility of their occurrence. IBM
* will not be liable for any third party claims against you.
*/
package com.ibm.richtext.test.unit;
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
public class TestAll extends TestGroup {
static final String COPYRIGHT =
"(C) Copyright IBM Corp. 1998-1999 - All Rights Reserved";
public static void main(String[] args) throws Exception {
new TestAll().run(args);
}
public TestAll() {
super(new String[] {
"TestAttributeSet",
"TestAttributeMap",
"TestFormatter",
"TestMText",
"TestParagraphStyles",
"TestMTextStreaming",
"FmwkTestTextPanel",
},
"Richtext Unit Tests");
}
}