Home | History | Annotate | Download | only in normalizer
      1 /*
      2  *******************************************************************************
      3  * Copyright (C) 1996-2010, International Business Machines Corporation and
      4  * others. All Rights Reserved.
      5  *******************************************************************************
      6  */
      7 package com.ibm.icu.dev.test.normalizer;
      8 
      9 import com.ibm.icu.dev.test.TestFmwk.TestGroup;
     10 
     11 /**
     12  * Top level test used to run normalizer tests as a batch.
     13  */
     14 public class TestAll extends TestGroup {
     15 
     16     public static void main(String[] args) {
     17         new TestAll().run(args);
     18     }
     19 
     20     public TestAll() {
     21         super(new String[] {
     22             "BasicTest",
     23             "ConformanceTest",
     24             "TestDeprecatedNormalizerAPI",
     25             "TestCanonicalIterator",
     26             "NormalizationMonkeyTest",
     27             "NormalizerRegressionTests",
     28             "UTS46Test"
     29         });
     30     }
     31 
     32     public static final String CLASS_TARGET_NAME = "Normalizer";
     33 }
     34