(t *testing.T)
| 65 | } |
| 66 | |
| 67 | func TestChain_AddDropSetRule(t *testing.T) { |
| 68 | var chain = getIPv4Chain(t) |
| 69 | _, err := chain.AddDropIPv4SetRule("ipv4_black_set", nil) |
| 70 | if err != nil { |
| 71 | t.Fatal(err) |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | func TestChain_AddRejectSetRule(t *testing.T) { |
| 76 | var chain = getIPv4Chain(t) |
nothing calls this directly
no test coverage detected