Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Why do unexpected method calls cause test failure ? #105

Closed
mariusstaicu opened this issue Aug 23, 2017 · 1 comment
Closed

Why do unexpected method calls cause test failure ? #105

mariusstaicu opened this issue Aug 23, 2017 · 1 comment

Comments

@mariusstaicu
Copy link
Contributor

As a user of mocks, I would like to have the possibility to choose which calls I really need to verify.
Therefore, unexpected method calls should issue only a warning in the test fail, in should not cause the test to fail.
ie, in controller.go, instead of:

expected, err := ctrl.expectedCalls.FindMatch(receiver, method, args)
if err != nil {
	origin := callerInfo(2)
	ctrl.t.Fatalf("Unexpected call to %T.%v(%v) at %s because: %s", receiver, method, args, origin, err)
}

should be

expected, err := ctrl.expectedCalls.FindMatch(receiver, method, args)
if err != nil {
	origin := callerInfo(2)
	ctrl.t.Logf("Unexpected call to %T.%v(%v) at %s because: %s", receiver, method, args, origin, err)
}
@balshetzer
Copy link
Collaborator

This issue is similar to #7. It's a reasonable request. I'll look into it. Meanwhile, I will close this issue and track it on #7.

# for free to subscribe to this conversation on GitHub. Already have an account? #.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants