(t *testing.T)
| 73 | } |
| 74 | |
| 75 | func TestChain_AddRejectSetRule(t *testing.T) { |
| 76 | var chain = getIPv4Chain(t) |
| 77 | _, err := chain.AddRejectIPv4SetRule("ipv4_black_set", nil) |
| 78 | if err != nil { |
| 79 | t.Fatal(err) |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | func TestChain_GetRuleWithUserData(t *testing.T) { |
| 84 | var chain = getIPv4Chain(t) |
nothing calls this directly
no test coverage detected