Verifies: SYS-REQ-009 [fuzz] MCDC SYS-REQ-009: N/A
(t *testing.T)
| 45 | // Verifies: SYS-REQ-009 [fuzz] |
| 46 | // MCDC SYS-REQ-009: N/A |
| 47 | func TestFuzzSetHarnessCoverage(t *testing.T) { |
| 48 | if got := FuzzSet([]byte(`{"test":"input"}`)); got != 1 { |
| 49 | t.Fatalf("expected FuzzSet success path to return 1, got %d", got) |
| 50 | } |
| 51 | if got := FuzzSet([]byte(``)); got != 0 { |
| 52 | t.Fatalf("expected FuzzSet failure path to return 0, got %d", got) |
| 53 | } |
| 54 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…