(ctx context.Context, t *testing.T, exec riverdriver.Executor, schema, topic string, payload string)
| 700 | } |
| 701 | |
| 702 | func sendNotification(ctx context.Context, t *testing.T, exec riverdriver.Executor, schema, topic string, payload string) { |
| 703 | t.Helper() |
| 704 | |
| 705 | t.Logf("Sending notification on %q: %s", topic, payload) |
| 706 | require.NoError(t, exec.NotifyMany(ctx, &riverdriver.NotifyManyParams{ |
| 707 | Payload: []string{payload}, |
| 708 | Schema: schema, |
| 709 | Topic: topic, |
| 710 | })) |
| 711 | } |
no test coverage detected
searching dependent graphs…