()
| 11 | ) |
| 12 | |
| 13 | func initZSetDB() (*ZSetStructure, *config.Options) { |
| 14 | opts := config.DefaultOptions |
| 15 | dir, _ := os.MkdirTemp("", "TestZSetStructure") |
| 16 | opts.DirPath = dir |
| 17 | zs, _ := NewZSetStructure(opts) |
| 18 | return zs, &opts |
| 19 | } |
| 20 | |
| 21 | func TestSortedSet(t *testing.T) { |
| 22 | type test struct { |
no test coverage detected