Home | History | Annotate | Download | only in strings

Lines Matching refs:ToUpper

497 func TestToUpper(t *testing.T) { runStringTests(t, ToUpper, "ToUpper", upperTests) }
734 upper := ToUpper(s)
744 if !equal("ToUpper(upper)", ToUpper(upper), upper, t) {
745 t.Error("ToUpper(upper) consistency fail")
755 unicode.ToUpper(unicode.ToLower('\u0130')) != '\u0130'
757 if !equal("ToUpper(lower)", ToUpper(lower), upper, t) {
758 t.Error("ToUpper(lower) consistency fail");