in pkg/mock/controller-runtime/client/mock.go [33:41]
func (c *Client) Get(ctx context.Context, key client.ObjectKey, obj client.Object, opts ...client.GetOption) error {
called := c.Called(key, obj)
parent, ok := called.Get(0).(client.Client)
if ok {
return parent.Get(ctx, key, obj, opts...)
}
return called.Error(0)
}