< prev index next >

test/jdk/java/util/PluggableLocale/CurrencyNameProviderTest.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 18,35 **** * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ /* ! * */ ! import java.text.*; ! import java.util.*; ! import sun.util.locale.provider.*; ! import sun.util.resources.*; public class CurrencyNameProviderTest extends ProviderTest { public static void main(String[] s) { Locale reservedLocale = Locale.getDefault(); --- 18,57 ---- * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ + /* ! * @test ! * @bug 4052440 7199750 8000997 8062588 8210406 ! * @summary CurrencyNameProvider tests ! * @library providersrc/foobarutils ! * providersrc/barprovider ! * @modules java.base/sun.util.locale.provider ! * java.base/sun.util.resources ! * @build com.foobar.Utils ! * com.bar.* ! * @run main/othervm -Djava.locale.providers=JRE,SPI CurrencyNameProviderTest */ ! import java.text.DecimalFormat; ! import java.text.DecimalFormatSymbols; ! import java.text.ParseException; ! import java.util.ArrayList; ! import java.util.Arrays; ! import java.util.Currency; ! import java.util.List; ! import java.util.Locale; ! import java.util.MissingResourceException; ! ! import com.bar.CurrencyNameProviderImpl; ! import com.bar.CurrencyNameProviderImpl2; ! ! import sun.util.locale.provider.LocaleProviderAdapter; ! import sun.util.locale.provider.ResourceBundleBasedAdapter; ! import sun.util.resources.OpenListResourceBundle; public class CurrencyNameProviderTest extends ProviderTest { public static void main(String[] s) { Locale reservedLocale = Locale.getDefault();
*** 45,56 **** test1(); test2(); } void test1() { ! com.bar.CurrencyNameProviderImpl cnp = new com.bar.CurrencyNameProviderImpl(); ! com.bar.CurrencyNameProviderImpl2 cnp2 = new com.bar.CurrencyNameProviderImpl2(); Locale[] availloc = Locale.getAvailableLocales(); Locale[] testloc = availloc.clone(); List<Locale> jreimplloc = Arrays.asList(LocaleProviderAdapter.forJRE().getCurrencyNameProvider().getAvailableLocales()); List<Locale> providerloc = new ArrayList<Locale>(); providerloc.addAll(Arrays.asList(cnp.getAvailableLocales())); --- 67,78 ---- test1(); test2(); } void test1() { ! CurrencyNameProviderImpl cnp = new CurrencyNameProviderImpl(); ! CurrencyNameProviderImpl2 cnp2 = new CurrencyNameProviderImpl2(); Locale[] availloc = Locale.getAvailableLocales(); Locale[] testloc = availloc.clone(); List<Locale> jreimplloc = Arrays.asList(LocaleProviderAdapter.forJRE().getCurrencyNameProvider().getAvailableLocales()); List<Locale> providerloc = new ArrayList<Locale>(); providerloc.addAll(Arrays.asList(cnp.getAvailableLocales()));
< prev index next >