(ctx context.Context, t *testing.T)
| 11 | ) |
| 12 | |
| 13 | func newQueue(ctx context.Context, t *testing.T) *Queue { |
| 14 | path := storage.MustParseURI(t.TempDir()) |
| 15 | engine := storage.NewLocalEngine() |
| 16 | q, err := Create(ctx, engine, path, 0) |
| 17 | require.NoError(t, err) |
| 18 | return q |
| 19 | } |
| 20 | |
| 21 | func TestJournalConcurrent(t *testing.T) { |
| 22 | ctx := t.Context() |
no test coverage detected