Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for TestToUpper (0.21 seconds)

  1. src/bytes/bytes_test.go

    		return utf8.MaxRune + 1
    	}
    	m = Map(invalidRune, []byte("x"))
    	expect = "\uFFFD"
    	if string(m) != expect {
    		t.Errorf("invalidRune: expected %q got %q", expect, m)
    	}
    }
    
    func TestToUpper(t *testing.T) { runStringTests(t, ToUpper, "ToUpper", upperTests) }
    
    func TestToLower(t *testing.T) { runStringTests(t, ToLower, "ToLower", lowerTests) }
    
    func BenchmarkToUpper(b *testing.B) {
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Mar 11 03:07:05 GMT 2026
    - 62.9K bytes
    - Click Count (0)
Back to Top