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