register method
Registers analysis rules, quick fixes, and assists.
Implementation
@override
void register(PluginRegistry registry) {
registry.registerWarningRule(MockitoArgs());
registry.registerWarningRule(MockitoMissingStub());
registry.registerWarningRule(MockitoVerifyCalledZero());
registry.registerWarningRule(MockitoWhen());
// TODO(srawlins): when stubbing Future- or Stream-returning type, use `thenAnswer(() async)`
// TODO(srawlins): `verify(...).called(0)` does not work. https://github.com/dart-lang/mockito/issues/185
// TODO(srawlins): Proper names: https://github.com/dart-lang/mockito/issues/183
}