(ctx context.Context)
| 129 | } |
| 130 | |
| 131 | func (h *harness) MakeNonexistentSubscription(ctx context.Context) (driver.Subscription, func(), error) { |
| 132 | return openSubscription(h.subClient, path.Join("projects", projectID, "subscriptions", "nonexistent-subscription"), nil), func() {}, nil |
| 133 | } |
| 134 | |
| 135 | func (h *harness) Close() { |
| 136 | h.pubClient.Close() |
nothing calls this directly
no test coverage detected