()
| 13 | var err error |
| 14 | |
| 15 | func initdb() (*StringStructure, *config.Options) { |
| 16 | opts := config.DefaultOptions |
| 17 | dir, _ := os.MkdirTemp("", "TestStringStructure_Get") |
| 18 | opts.DirPath = dir |
| 19 | str, _ := NewStringStructure(opts) |
| 20 | return str, &opts |
| 21 | } |
| 22 | |
| 23 | func TestStringStructure_Get(t *testing.T) { |
| 24 | str, _ := initdb() |
no test coverage detected