(ctx context.Context)
| 93 | } |
| 94 | |
| 95 | func (h *harness) MakeNonexistentTopic(ctx context.Context) (driver.Topic, error) { |
| 96 | return openTopic(h.client.Publisher("nonexistent-topic")), nil |
| 97 | } |
| 98 | |
| 99 | func (h *harness) CreateSubscription(ctx context.Context, dt driver.Topic, testName string) (ds driver.Subscription, cleanup func(), err error) { |
| 100 | subName := fmt.Sprintf("%s-subscription-%d", sanitize(testName), atomic.AddUint32(&h.numSubs, 1)) |
nothing calls this directly
no test coverage detected