(t *testing.T)
| 149 | } |
| 150 | |
| 151 | func TestKVIPList_ReadMaxVersion(t *testing.T) { |
| 152 | kv, err := iplibrary.NewKVIPList() |
| 153 | if err != nil { |
| 154 | t.Fatal(err) |
| 155 | } |
| 156 | |
| 157 | maxVersion, err := kv.ReadMaxVersion() |
| 158 | if err != nil { |
| 159 | t.Fatal(err) |
| 160 | } |
| 161 | |
| 162 | t.Log("version:", maxVersion) |
| 163 | } |
| 164 | |
| 165 | func TestKVIPList_ReadItems(t *testing.T) { |
| 166 | kv, err := iplibrary.NewKVIPList() |
nothing calls this directly
no test coverage detected