(t *testing.T)
| 35 | } |
| 36 | |
| 37 | func TestUnicode(t *testing.T) { |
| 38 | var testvecs = map[string]string{ |
| 39 | "€": `\u20AC`, |
| 40 | "𐐷": `\uD801\uDC37`, |
| 41 | } |
| 42 | |
| 43 | for k, v := range testvecs { |
| 44 | tsliceString(t, k, v) |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | func TestBadUnicode(t *testing.T) { |
| 49 | var out Buffer |
nothing calls this directly
no test coverage detected
searching dependent graphs…