Lines Matching refs:Upper
696 upper := "ABCÇDEFG?HI?JKLMNOÖPRS?TUÜVYZ"
697 u := ToUpperSpecial(unicode.TurkishCase, upper)
698 if u != upper {
699 t.Errorf("Upper(upper) is %s not %s", u, upper)
702 if u != upper {
703 t.Errorf("Upper(lower) is %s not %s", u, upper)
709 l = ToLowerSpecial(unicode.TurkishCase, upper)
711 t.Errorf("Lower(upper) is %s not %s", l, lower)
921 upper := ToUpper(s)
925 if n := utf8.RuneCountInString(upper); n != numRunes {
926 t.Error("rune count wrong in upper:", n)
931 if !equal("ToUpper(upper)", ToUpper(upper), upper, t) {
932 t.Error("ToUpper(upper) consistency fail")
939 upper case 'I' mapping to 'i'. We comment them out but keep them for
944 if !equal("ToUpper(lower)", ToUpper(lower), upper, t) {
947 if !equal("ToLower(upper)", ToLower(upper), lower, t) {
948 t.Error("ToLower(upper) consistency fail");