Verifies: SYS-REQ-014 (escape handling) reqproof:proptest:skip targeted witness/regression test; not a property-test subject
(t *testing.T)
| 432 | // Verifies: SYS-REQ-014 (escape handling) |
| 433 | // reqproof:proptest:skip targeted witness/regression test; not a property-test subject |
| 434 | func TestEscapeEmptyString(t *testing.T) { |
| 435 | if got, want := string(Escape("")), `""`; got != want { |
| 436 | t.Fatalf("Escape(\"\") = %q; want %q", got, want) |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | // Verifies: SYS-REQ-009 (Set) |
| 441 | // Verifies: SYS-REQ-009 (Set) |