(t *testing.T)
| 24 | ) |
| 25 | |
| 26 | func TestMemoryKV(t *testing.T) { |
| 27 | kv := sorted.NewMemoryKeyValue() |
| 28 | kvtest.TestSorted(t, kv) |
| 29 | } |
| 30 | |
| 31 | // TODO(mpl): move this test into kvtest. But that might require |
| 32 | // kvtest taking a "func () sorted.KeyValue) constructor param, |
nothing calls this directly
no test coverage detected