Lines Matching refs:Upper
645 upper := "ABCÇDEFG?HI?JKLMNOÖPRS?TUÜVYZ"
646 u := ToUpperSpecial(unicode.TurkishCase, upper)
647 if u != upper {
648 t.Errorf("Upper(upper) is %s not %s", u, upper)
651 if u != upper {
652 t.Errorf("Upper(lower) is %s not %s", u, upper)
658 l = ToLowerSpecial(unicode.TurkishCase, upper)
660 t.Errorf("Lower(upper) is %s not %s", l, lower)
870 upper := ToUpper(s)
874 if n := utf8.RuneCountInString(upper); n != numRunes {
875 t.Error("rune count wrong in upper:", n)
880 if !equal("ToUpper(upper)", ToUpper(upper), upper, t) {
881 t.Error("ToUpper(upper) consistency fail")
888 upper case 'I' mapping to 'i'. We comment them out but keep them for
893 if !equal("ToUpper(lower)", ToUpper(lower), upper, t) {
896 if !equal("ToLower(upper)", ToLower(upper), lower, t) {
897 t.Error("ToLower(upper) consistency fail");