(t *testing.T)
| 124 | } |
| 125 | |
| 126 | func TestTable_DeleteSet(t *testing.T) { |
| 127 | var table = getIPv4Table(t) |
| 128 | err := table.DeleteSet("ipv4_black_set") |
| 129 | if err != nil { |
| 130 | t.Fatal(err) |
| 131 | } |
| 132 | t.Log("ok") |
| 133 | } |
| 134 | |
| 135 | func TestTable_Flush(t *testing.T) { |
| 136 | var table = getIPv4Table(t) |
nothing calls this directly
no test coverage detected