1 /* 2 ******************************************************************************* 3 * Copyright (C) 2008, International Business Machines Corporation and * 4 * others. All Rights Reserved. * 5 ******************************************************************************* 6 */ 7 package com.ibm.icu.dev.test.localespi; 8 9 import com.ibm.icu.dev.test.TestFmwk.TestGroup; 10 11 public class TestAll extends TestGroup { 12 main(String[] args)13 public static void main(String[] args) { 14 new TestAll().run(args); 15 } 16 TestAll()17 public TestAll() { 18 super(new String[] { 19 "BreakIteratorTest", 20 "CollatorTest", 21 "DateFormatSymbolsTest", 22 "DateFormatTest", 23 "DecimalFormatSymbolsTest", 24 "NumberFormatTest", 25 "CurrencyNameTest", 26 "LocaleNameTest", 27 "TimeZoneNameTest", 28 }); 29 } 30 } 31