(t *testing.T)
| 1701 | // nolint: ireturn // WONTFIX - generated method signature |
| 1702 | func (m *mockServerInterface) UpdateSubscription(ctx context.Context, |
| 1703 | _ backend.UpdateSubscriptionRequestObject) ( |
| 1704 | backend.UpdateSubscriptionResponseObject, error) { |
| 1705 | assertUserInCtx(ctx, m.t, m.expectedUserInCtx) |
| 1706 | m.callCount++ |
| 1707 | panic("unimplemented") |
| 1708 | } |
| 1709 | |
| 1710 | // ListSubscriptions implements backend.StrictServerInterface. |
| 1711 | // nolint: ireturn // WONTFIX - generated method signature |
| 1712 | func (m *mockServerInterface) ListSubscriptions(ctx context.Context, |
| 1713 | _ backend.ListSubscriptionsRequestObject) ( |
| 1714 | backend.ListSubscriptionsResponseObject, error) { |
| 1715 | assertUserInCtx(ctx, m.t, m.expectedUserInCtx) |
| 1716 | m.callCount++ |
| 1717 | panic("unimplemented") |
| 1718 | } |
| 1719 | |
| 1720 | // GetSubscription implements backend.StrictServerInterface. |
| 1721 | // nolint: ireturn // WONTFIX - generated method signature |
| 1722 | func (m *mockServerInterface) GetSubscription(ctx context.Context, |
| 1723 | _ backend.GetSubscriptionRequestObject) ( |
| 1724 | backend.GetSubscriptionResponseObject, error) { |
| 1725 | assertUserInCtx(ctx, m.t, m.expectedUserInCtx) |
| 1726 | m.callCount++ |
| 1727 | panic("unimplemented") |
| 1728 | } |
| 1729 | |
| 1730 | // GetSubscriptionRSS implements backend.StrictServerInterface. |
| 1731 | // nolint: ireturn // WONTFIX - generated method signature |
| 1732 | func (m *mockServerInterface) GetSubscriptionRSS(ctx context.Context, _ backend.GetSubscriptionRSSRequestObject) ( |
| 1733 | backend.GetSubscriptionRSSResponseObject, error) { |
| 1734 | assertUserInCtx(ctx, m.t, m.expectedUserInCtx) |
| 1735 | m.callCount++ |
| 1736 | panic("unimplemented") |
| 1737 | } |
| 1738 |
nothing calls this directly
no test coverage detected