(t *testing.T)
| 79 | } |
| 80 | |
| 81 | func TestStringEsccapes(t *testing.T) { |
| 82 | testExpectedXVal(t, |
| 83 | `"\`+"\b\f\n\r\t", |
| 84 | `\"\\\b\f\n\r\t`, |
| 85 | &Xstring{}) |
| 86 | |
| 87 | testExpectedXVal(t, |
| 88 | `/`, |
| 89 | `\/`, |
| 90 | &Xstring{}) |
| 91 | } |
| 92 | |
| 93 | func TestStringSomeUTF8(t *testing.T) { |
| 94 | testExpectedXVal(t, |
nothing calls this directly
no test coverage detected
searching dependent graphs…