jdk/test/sun/util/resources/Locale/Bug6275682.java
author weijun
Thu, 08 Sep 2011 09:04:28 +0800
changeset 10435 e9df9d264894
parent 2 90ce3da70b43
child 21596 0e3a39f29dbc
permissions -rw-r--r--
7087428: move client tests out of jdk_misc Reviewed-by: alanb, ohair

/**
    @test
    @summary Verifying that the language names starts with lowercase in spanish
    @bug 6275682
*/

import java.util.Locale;

public class Bug6275682 {

   public static void main (String[] args) throws Exception {
        Locale es = new Locale ("es");
        String[] isoLangs = es.getISOLanguages ();
        String error = "";

        for (int i = 0; i < isoLangs.length; i++) {
            Locale current = new Locale (isoLangs[i]);
            String localeString = current.getDisplayLanguage (es);
            String startLetter = localeString.substring (0,1);
            if (!startLetter.toLowerCase (es).equals (startLetter)){
                error = error + "\n\t"+ isoLangs[i] + " " + localeString;
            }
        }

        if (error.length () > 0){
            throw new Exception ("\nFollowing language names starts with upper-case letter: "
                    + error + "\nLower-case expected!");
        }

    }
}