We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some code I work with uses a subset of testing.T's interface, and so has declared something like this:
testing.T
type TestingT interface { Helper() // ... other methods of testing.T }
The linter doesn't pick up on that and AFAICT can't be configured to consider TestingT to be something to check for Helper calls.
TestingT
Helper
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some code I work with uses a subset of
testing.T
's interface, and so has declared something like this:The linter doesn't pick up on that and AFAICT can't be configured to consider
TestingT
to be something to check forHelper
calls.The text was updated successfully, but these errors were encountered: