(t *testing.T)
| 57 | } |
| 58 | |
| 59 | func TestChain_AddAcceptSetRule(t *testing.T) { |
| 60 | var chain = getIPv4Chain(t) |
| 61 | _, err := chain.AddAcceptIPv4SetRule("ipv4_black_set", nil) |
| 62 | if err != nil { |
| 63 | t.Fatal(err) |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | func TestChain_AddDropSetRule(t *testing.T) { |
| 68 | var chain = getIPv4Chain(t) |
nothing calls this directly
no test coverage detected