test/java/util/Locale/InternationalBAT.java

Print this page




   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 /*
  24  * @test
  25  * @bug 4449637
  26  * @summary Basic acceptance test for international J2RE. Verifies that the
  27  * most important locale data and character converters exist and are
  28  * minimally functional.

  29  */
  30 
  31 import java.io.UnsupportedEncodingException;
  32 import java.text.DateFormat;
  33 import java.util.Calendar;
  34 import java.util.Date;
  35 import java.util.Locale;
  36 import java.util.TimeZone;
  37 
  38 public class InternationalBAT {
  39 
  40     public static void main(String[] args) {
  41         boolean pass = true;
  42 
  43         TimeZone tz = TimeZone.getDefault();
  44         try {
  45             pass &= testRequiredLocales();
  46             pass &= testRequiredEncodings();
  47         } finally {
  48             TimeZone.setDefault(tz);




   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 /*
  24  * @test
  25  * @bug 4449637 8008577
  26  * @summary Basic acceptance test for international J2RE. Verifies that the
  27  * most important locale data and character converters exist and are
  28  * minimally functional.
  29  * @run main/othervm -Djava.locale.providers=JRE,SPI InternationalBAT
  30  */
  31 
  32 import java.io.UnsupportedEncodingException;
  33 import java.text.DateFormat;
  34 import java.util.Calendar;
  35 import java.util.Date;
  36 import java.util.Locale;
  37 import java.util.TimeZone;
  38 
  39 public class InternationalBAT {
  40 
  41     public static void main(String[] args) {
  42         boolean pass = true;
  43 
  44         TimeZone tz = TimeZone.getDefault();
  45         try {
  46             pass &= testRequiredLocales();
  47             pass &= testRequiredEncodings();
  48         } finally {
  49             TimeZone.setDefault(tz);