Verifies: SYS-REQ-014 [boundary]
(t *testing.T)
| 781 | |
| 782 | // Verifies: SYS-REQ-014 [boundary] |
| 783 | func TestRemoval1_Unescape_EscapedQuote(t *testing.T) { |
| 784 | out, err := Unescape([]byte(`hello\"world`), make([]byte, 64)) |
| 785 | if err != nil { |
| 786 | t.Fatalf("unexpected error: %v", err) |
| 787 | } |
| 788 | if string(out) != `hello"world` { |
| 789 | t.Fatalf("unexpected result: %q", out) |
| 790 | } |
| 791 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…