(tb testing.TB, spec *CollectionSpec, opts *CollectionOptions)
| 215 | } |
| 216 | |
| 217 | func mustNewCollection(tb testing.TB, spec *CollectionSpec, opts *CollectionOptions) *Collection { |
| 218 | tb.Helper() |
| 219 | c, err := newCollection(tb, spec, opts) |
| 220 | qt.Assert(tb, qt.IsNil(err)) |
| 221 | return c |
| 222 | } |
| 223 | |
| 224 | func loadAndAssign(tb testing.TB, spec *CollectionSpec, to any, opts *CollectionOptions) error { |
| 225 | tb.Helper() |
no test coverage detected
searching dependent graphs…