Home | History | Annotate | Download | only in strings

Lines Matching full:errorf

113 			t.Errorf("%s(%q,%q) = %v; want %v", funcName, test.s, test.sep, actual, test.out)
135 t.Errorf("LastIndexByte(%q,%c) = %v; want %v", test.s, test.sep[0], actual, test.out)
154 t.Errorf("IndexRune(%q,%d)= %v; want %v", test.s, test.rune, actual, test.out)
221 t.Errorf("explode(%q, %d) = %v; want %v", tt.s, tt.n, a, tt.a)
226 t.Errorf(`Join(explode(%q, %d), "") = %q`, tt.s, tt.n, s)
258 t.Errorf("Split(%q, %q, %d) = %v; want %v", tt.s, tt.sep, tt.n, a, tt.a)
266 t.Errorf("Join(Split(%q, %q, %d), %q) = %q", tt.s, tt.sep, tt.n, tt.sep, s)
271 t.Errorf("Split disagrees with SplitN(%q, %q, %d) = %v; want %v", tt.s, tt.sep, tt.n, b, a)
297 t.Errorf(`Split(%q, %q, %d) = %v; want %v`, tt.s, tt.sep, tt.n, a, tt.a)
302 t.Errorf(`Join(Split(%q, %q, %d), %q) = %q`, tt.s, tt.sep, tt.n, tt.sep, s)
307 t.Errorf("SplitAfter disagrees with SplitAfterN(%q, %q, %d) = %v; want %v", tt.s, tt.sep, tt.n, b, a)
336 t.Errorf("Fields(%q) = %v; want %v", tt.s, a, tt.a)
353 t.Errorf("FieldsFunc(%q, unicode.IsSpace) = %v; want %v", tt.s, a, tt.a)
361 t.Errorf("FieldsFunc(%q) = %v, want %v", tt.s, a, tt.a)
377 t.Errorf("%s(%q) = %q; want %q", funcName, tc.in, actual, tc.out)
447 t.Errorf("growing: expected %q got %q", expect, m)
455 t.Errorf("shrinking: expected %q got %q", expect, m)
462 t.Errorf("rot13: expected %q got %q", expect, m)
469 t.Errorf("rot13: expected %q got %q", expect, m)
482 t.Errorf("drop: expected %q got %q", expect, m)
515 t.Errorf("Upper(upper) is %s not %s", u, upper)
519 t.Errorf("Upper(lower) is %s not %s", u, upper)
523 t.Errorf("Lower(lower) is %s not %s", l, lower)
527 t.Errorf("Lower(upper) is %s not %s", l, lower)
580 t.Errorf("Undefined trim function %s", name)
584 t.Errorf("%s(%q, %q) = %q; want %q", name, tc.in, tc.arg, actual, tc.out)
608 b.Errorf("Undefined trim function %s", name)
612 b.Errorf("%s(%q, %q) = %q; want %q", name, tc.in, tc.arg, actual, tc.out)
659 t.Errorf("TrimFunc(%q, %q) = %q; want %q", tc.in, tc.f.name, actual, tc.out)
694 t.Errorf("IndexFunc(%q, %s) = %d; want %d", tc.in, tc.f.name, first, tc.first)
698 t.Errorf("LastIndexFunc(%q, %s) = %d; want %d", tc.in, tc.f.name, last, tc.last)
716 t.Errorf("%s diff at %d: U+%04X U+%04X", m, i, r1, r2)
783 t.Errorf("Repeat(%v, %d) = %v; want %v", tt.in, tt.count, a, tt.out)
819 t.Errorf("[]rune(%q) = %v; want %v", tt.in, a, tt.out)
826 t.Errorf("string([]rune(%q)) = %x; want %x", tt.in, s, tt.in)
837 t.Errorf("Unreading %q at beginning: expected error", s)
846 t.Errorf("Reading %q: %s", s, e)
853 t.Errorf("Unreading %q: %s", s, e)
858 t.Errorf("Reading %q after unreading: %s", s, e)
862 t.Errorf("Reading %q after unreading: want byte %q, got %q", s, b, b1)
867 t.Errorf("Reader(%q).ReadByte() produced %q", s, res.String())
877 t.Errorf("Unreading %q at beginning: expected error", s)
886 t.Errorf("Reading %q: %s", s, e)
893 t.Errorf("Unreading %q: %s", s, e)
898 t.Errorf("Reading %q after unreading: %s", s, e)
902 t.Errorf("Reading %q after unreading: want rune %q, got %q", s, r, r1)
906 t.Errorf("Reading %q after unreading: want size %d, got %d", s, z, z1)
911 t.Errorf("Reader(%q).ReadRune() produced %q", s, res)
937 t.Errorf("Unreading after %s: expected error", tt.name)
972 t.Errorf("Replace(%q, %q, %q, %d) = %q, want %q", tt.in, tt.old, tt.new, tt.n, s, tt.out)
994 t.Errorf("Title(%q) = %q, want %q", tt.in, s, tt.out)
1012 t.Errorf("Contains(%s, %s) = %v, want %v",
1038 t.Errorf("ContainsAny(%s, %s) = %v, want %v",
1062 t.Errorf("ContainsRune(%q, %q) = %v, want %v",
1088 t.Errorf("EqualFold(%#q, %#q) = %v, want %v", tt.s, tt.t, out, tt.out)
1091 t.Errorf("EqualFold(%#q, %#q) = %v, want %v", tt.t, tt.s, out, tt.out)
1115 t.Errorf("Count(\"%s\", \"%s\") = %d, want %d", tt.s, tt.sep, num, tt.num)