(t *testing.T)
| 35 | var timeout = (1 << 10) * test.Delay |
| 36 | |
| 37 | func TestPubSub(t *testing.T) { //nolint:paralleltest |
| 38 | events.IncludeCaller = true |
| 39 | |
| 40 | test.RunTest(t, test.TestConfig{ |
| 41 | Timeout: timeout, |
| 42 | Func: func(ctx context.Context, a *assertions.Assertion) { |
| 43 | pubsub := basic.NewPubSub() |
| 44 | eventstest.TestBackend(ctx, t, a, pubsub) |
| 45 | }, |
| 46 | }) |
| 47 | } |
nothing calls this directly
no test coverage detected