riverpod icon indicating copy to clipboard operation
riverpod copied to clipboard

Warn if a notifier mock doesn't extend a notifier base class

Open rrousselGit opened this issue 1 year ago • 13 comments

Bad:

class ExampleMock extends Mock implements Example

Good:

class ExampleMock extends Notifier<T> with Mock implements Example

rrousselGit avatar Mar 22 '23 08:03 rrousselGit