One of the functions I am going to test against have an API call twice with different arguments. I'd like to verify that they're called with different inputs. With GoMocks, I can do:
gomock.InOrder(
mockObj.EXPECT().SomeMethod(1, "first"),
mockObj.EXPECT().SomeMethod(2, "second"),
)
Is there an equivalent method as gomock.Inorder in Gomega? Thanks.