(t *testing.T)
| 210 | } |
| 211 | |
| 212 | func TestKVIPList_Inspect(t *testing.T) { |
| 213 | kv, err := iplibrary.NewKVIPList() |
| 214 | if err != nil { |
| 215 | t.Fatal(err) |
| 216 | } |
| 217 | err = kv.TestInspect(t) |
| 218 | if err != nil { |
| 219 | t.Fatal(err) |
| 220 | } |
| 221 | } |
nothing calls this directly
no test coverage detected