Matthieu Blottière Seroux

Results 2 comments of Matthieu Blottière Seroux

There is no "one size fits all" batch size. It depends on both the number of tasks and the number of inputs. Would it be feasible to catch this error...

You'll have to know the exact number of expected arguments. Matching is done like this: ```go // expected call member.GetMembers("one") // mock memberMock.On("GetMembers", "one") // With several arguments members.GetMembers("one", "two")...