(dir string)
| 53 | } |
| 54 | |
| 55 | func removeDir(dir string) { |
| 56 | if err := os.RemoveAll(dir); err != nil { |
| 57 | panic(err) |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | func runNutsDBTest(t *testing.T, opts *Options, test func(t *testing.T, db *DB)) { |
| 62 | if opts == nil { |
no outgoing calls
no test coverage detected