jdk/test/sun/util/resources/Locale/Bug6275682.java
author duke
Wed, 05 Jul 2017 16:48:18 +0200
changeset 2092 b86b8d6d48bd
parent 2 90ce3da70b43
child 21596 0e3a39f29dbc
permissions -rw-r--r--
Merge

/**
    @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!");
        }

    }
}