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

Description
The mocks are being flagged as a failing line during a test failure. This is due to the fact that Controller.Call(). invokes t.Helper(), but the mock does not. This means that instead of the offending line being called out, the mock is.
This could be solved by having the mock also call t.Helper().