Home | History | Annotate | Download | only in strconv

Lines Matching refs:tt

60 	for _, tt := range quotetests {
61 if out := Quote(tt.in); out != tt.out {
62 t.Errorf("Quote(%s) = %s, want %s", tt.in, out, tt.out)
64 if out := AppendQuote([]byte("abc"), tt.in); string(out) != "abc"+tt.out {
65 t.Errorf("AppendQuote(%q, %s) = %s, want %s", "abc", tt.in, out, "abc"+tt.out)
71 for _, tt := range quotetests {
72 if out := QuoteToASCII(tt.in); out != tt.ascii {
73 t.Errorf("QuoteToASCII(%s) = %s, want %s", tt.in, out, tt.ascii)
75 if out := AppendQuoteToASCII([]byte("abc"), tt.in); string(out) != "abc"+tt.ascii {
76 t.Errorf("AppendQuoteToASCII(%q, %s) = %s, want %s", "abc", tt.in, out, "abc"+tt.ascii)
82 for _, tt := range quotetests {
83 if out := QuoteToGraphic(tt.in); out != tt.graphic {
84 t.Errorf("QuoteToGraphic(%s) = %s, want %s", tt.in, out, tt.graphic)
86 if out := AppendQuoteToGraphic([]byte("abc"), tt.in); string(out) != "abc"+tt.graphic {
87 t.Errorf("AppendQuoteToGraphic(%q, %s) = %s, want %s", "abc", tt.in, out, "abc"+tt.graphic)
144 for _, tt := range quoterunetests {
145 if out := QuoteRune(tt.in); out != tt.out {
146 t.Errorf("QuoteRune(%U) = %s, want %s", tt.in, out, tt.out)
148 if out := AppendQuoteRune([]byte("abc"), tt.in); string(out) != "abc"+tt.out {
149 t.Errorf("AppendQuoteRune(%q, %U) = %s, want %s", "abc", tt.in, out, "abc"+tt.out)
155 for _, tt := range quoterunetests {
156 if out := QuoteRuneToASCII(tt.in); out != tt.ascii {
157 t.Errorf("QuoteRuneToASCII(%U) = %s, want %s", tt.in, out, tt.ascii)
159 if out := AppendQuoteRuneToASCII([]byte("abc"), tt.in); string(out) != "abc"+tt.ascii {
160 t.Errorf("AppendQuoteRuneToASCII(%q, %U) = %s, want %s", "abc", tt.in, out, "abc"+tt.ascii)
166 for _, tt := range quoterunetests {
167 if out := QuoteRuneToGraphic(tt.in); out != tt.graphic {
168 t.Errorf("QuoteRuneToGraphic(%U) = %s, want %s", tt.in, out, tt.graphic)
170 if out := AppendQuoteRuneToGraphic([]byte("abc"), tt.in); string(out) != "abc"+tt.graphic {
171 t.Errorf("AppendQuoteRuneToGraphic(%q, %U) = %s, want %s", "abc", tt.in, out, "abc"+tt.graphic)
228 for _, tt := range canbackquotetests {
229 if out := CanBackquote(tt.in); out != tt.out {
230 t.Errorf("CanBackquote(%q) = %v, want %v", tt.in, out, tt.out)
309 for _, tt := range unquotetests {
310 if out, err := Unquote(tt.in); err != nil || out != tt.out {
311 t.Errorf("Unquote(%#q) = %q, %v want %q, nil", tt.in, out, err, tt.out)
316 for _, tt := range quotetests {
317 if in, err := Unquote(tt.out); in != tt.in {
318 t.Errorf("Unquote(%#q) = %q, %v, want %q, nil", tt.out, in, err, tt.in)