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