(tb testing.TB, kinds ...config.PathKind)
| 10 | ) |
| 11 | |
| 12 | func testSystemLayout(tb testing.TB, kinds ...config.PathKind) config.Layout { |
| 13 | tb.Helper() |
| 14 | |
| 15 | layout, err := config.NewSystemResolver("").Resolve(kinds...) |
| 16 | if err != nil { |
| 17 | tb.Fatalf("resolve test layout: %v", err) |
| 18 | } |
| 19 | |
| 20 | return layout |
| 21 | } |
| 22 | |
| 23 | func openSystemTestStore(tb testing.TB) Repository { |
| 24 | tb.Helper() |
no test coverage detected