(ctx context.Context)
| 91 | } |
| 92 | |
| 93 | func (h *harness) MakeNonexistentTopic(ctx context.Context) (driver.Topic, error) { |
| 94 | return openTopic(h.pubClient, path.Join("projects", projectID, "topics", "nonexistent-topic")), nil |
| 95 | } |
| 96 | |
| 97 | func (h *harness) CreateSubscription(ctx context.Context, dt driver.Topic, testName string) (ds driver.Subscription, cleanup func(), err error) { |
| 98 | // We may encounter subscriptions that were created by a previous test run |
nothing calls this directly
no test coverage detected