Home | History | Annotate | Download | only in languages
      1 /*
      2 ******************************************************************************
      3 * Copyright (C) 2007, 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.duration.LanguageTestRoot;
     13 
     14 /**
     15  * Test cases for zh_Hans_SG
     16  */
     17 public class Test_zh_Hans_SG extends LanguageTestRoot {
     18 
     19   /**
     20    * Invoke the tests.
     21    */
     22   public static void main(String[] args) {
     23       new Test_zh_Hans_SG().run(args);
     24   }
     25 
     26   /**
     27    * Constructor.
     28    */
     29   public Test_zh_Hans_SG() {
     30     super("zh_Hans_SG", false);
     31   }
     32 }
     33