| 150 | } |
| 151 | |
| 152 | type fakeTaskService struct { |
| 153 | sync.Mutex |
| 154 | createRequests map[string]*tasks.CreateTaskRequest |
| 155 | tasks.TasksClient |
| 156 | } |
| 157 | |
| 158 | func (ts *fakeTaskService) Create(ctx context.Context, in *tasks.CreateTaskRequest, opts ...grpc.CallOption) (*tasks.CreateTaskResponse, error) { |
| 159 | ts.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected