This repository was archived by the owner on Jun 27, 2023. It is now read-only.
This repository was archived by the owner on Jun 27, 2023. It is now read-only.
Order of calls is enforced when InOrder()
or After()
were not invoked #653
Open
Description
Actual behaviour
When I have EXPECT
set for two calls to the same method with different parameters - the order of EXPECT
definitions enforces the order of the actual calls.
I.e. when having these expectations defined:
test.mock.EXPECT().DoSomething("foo").Return(&Response{})
test.mock.EXPECT().DoSomething("bar").Return(&Response{})
and code under test defined as
service.DoSomething("foo")
service.DoSomething("bar")
Just changing the order of definitions of calls expected with no other changes, i.e. making it
test.mock.EXPECT().DoSomething("bar").Return(&Response{})
test.mock.EXPECT().DoSomething("foo").Return(&Response{})
makes the test fail.
Expected behavior
As per documentation:
By default, expected calls are not enforced to run in any particular order.
So no order should be enforced as long as the actual calls match any of the defined expectations.
Additional Information
- gomock mode: source
- gomock version: 1.6.0
- golang version: 1.17.2