]> gitweb.fperrin.net Git - Dictionary.git/blob - jars/icu4j-52_1/main/tests/core/src/com/ibm/icu/dev/test/duration/languages/TestAll.java
Added flags.
[Dictionary.git] / jars / icu4j-52_1 / main / tests / core / src / com / ibm / icu / dev / test / duration / languages / TestAll.java
1 /*
2 ******************************************************************************
3 * Copyright (C) 2007-2008, International Business Machines Corporation and   *
4 * others. All Rights Reserved.                                               *
5 ******************************************************************************
6 */
7
8 // Copyright 2006 Google Inc.  All Rights Reserved.
9
10 package com.ibm.icu.dev.test.duration.languages;
11
12 import com.ibm.icu.dev.test.TestFmwk.TestGroup;
13
14 /**
15  * Top level test used to run all other tests as a batch.
16  */
17 public class TestAll extends TestGroup {
18
19     public static void main(String[] args) {
20         new TestAll().run(args);
21     }
22
23     public TestAll() {
24         super(new String[] {
25 //                  "com.ibm.icu.dev.test.duration.languages.Test_ar_EG",
26                   "com.ibm.icu.dev.test.duration.languages.Test_en",
27                   "com.ibm.icu.dev.test.duration.languages.Test_es",
28                   "com.ibm.icu.dev.test.duration.languages.Test_fr",
29                   "com.ibm.icu.dev.test.duration.languages.Test_he_IL",
30                   "com.ibm.icu.dev.test.duration.languages.Test_hi",
31                   "com.ibm.icu.dev.test.duration.languages.Test_it",
32                   "com.ibm.icu.dev.test.duration.languages.Test_ja",
33                   "com.ibm.icu.dev.test.duration.languages.Test_ko",
34                   "com.ibm.icu.dev.test.duration.languages.Test_zh_Hans",
35                   "com.ibm.icu.dev.test.duration.languages.Test_zh_Hans_SG",
36                   "com.ibm.icu.dev.test.duration.languages.Test_zh_Hant",
37                   "com.ibm.icu.dev.test.duration.languages.Test_zh_Hant_HK",
38               },
39               "Duration Language Tests");
40     }
41
42     public static final String CLASS_TARGET_NAME = "DurationLanguages";
43 }
44