• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *******************************************************************************
3  * Copyright (C) 2009, International Business Machines Corporation and         *
4  * others. All Rights Reserved.                                                *
5  *******************************************************************************
6  */
7 package com.ibm.icu.dev.test;
8 
9 import com.ibm.icu.dev.test.TestFmwk.TestGroup;
10 
11 public class TestPackaging extends TestGroup {
12 
main(String[] args)13     public static void main(String[] args) {
14         new TestPackaging().run(args);
15     }
16 
TestPackaging()17     public TestPackaging() {
18         super(testList(), "ICU Packaging tests");
19     }
20 
testList()21     public static String[] testList() {
22         return new String[] { "TestLocaleNamePackaging" };
23     }
24 
25     public static final String CLASS_TARGET_NAME  = "Packaging";
26 }
27