(t *testing.T)
| 73 | } |
| 74 | |
| 75 | func TestTable_DeleteChain(t *testing.T) { |
| 76 | var table = getIPv4Table(t) |
| 77 | err := table.DeleteChain("test_default_chain") |
| 78 | if err != nil { |
| 79 | t.Fatal(err) |
| 80 | } |
| 81 | t.Log("ok") |
| 82 | } |
| 83 | |
| 84 | func TestTable_AddSet(t *testing.T) { |
| 85 | var table = getIPv4Table(t) |
nothing calls this directly
no test coverage detected