]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-4_2_1-src/src/com/ibm/icu/dev/test/calendar/TestAll.java
icu4jsrc
[Dictionary.git] / jars / icu4j-4_2_1-src / src / com / ibm / icu / dev / test / calendar / TestAll.java
1 /*\r
2  *******************************************************************************\r
3  * Copyright (C) 1996-2007, International Business Machines Corporation and    *\r
4  * others. All Rights Reserved.                                                *\r
5  *******************************************************************************\r
6  */\r
7 package com.ibm.icu.dev.test.calendar;\r
8 import com.ibm.icu.dev.test.TestFmwk.TestGroup;\r
9 \r
10 /**\r
11  * Top level test used to run all other calendar tests as a batch.\r
12  */\r
13 public class TestAll extends TestGroup {\r
14     public static void main(String[] args) {\r
15         new TestAll().run(args);\r
16     }\r
17 \r
18     public TestAll() {\r
19         super(\r
20               new String[] {\r
21                   "AstroTest",\r
22                   "CalendarRegression",\r
23                   "CompatibilityTest",\r
24                   "CopticTest",\r
25                   "EthiopicTest",\r
26                   "HebrewTest",\r
27                   "IBMCalendarTest",\r
28                   "IslamicTest",\r
29                   "JapaneseTest",\r
30                   "ChineseTest",\r
31                   "IndianTest",\r
32                   "HolidayTest",\r
33                   "DataDrivenCalendarTest"\r
34               },\r
35               "Calendars, Holiday, and Astro tests"\r
36               );\r
37     }\r
38 \r
39     public static final String CLASS_TARGET_NAME = "Calendar";\r
40 }\r