1/*
2 *******************************************************************************
3 * Copyright (C) 1996-2012, International Business Machines Corporation and    *
4 * others. All Rights Reserved.                                                *
5 *******************************************************************************
6 */
7package com.ibm.icu.dev.test.calendar;
8import com.ibm.icu.dev.test.TestFmwk.TestGroup;
9
10/**
11 * Top level test used to run all other calendar tests as a batch.
12 */
13public 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}
42