| Index: pkg/typed_mock/test/typed_mock_test.dart
|
| diff --git a/pkg/typed_mock/test/typed_mock_test.dart b/pkg/typed_mock/test/typed_mock_test.dart
|
| index c2dc90705732425e58a4929c9247cfc8a45959e3..9585673bc62ef5b9f185b84e953da9a0a73e91d1 100644
|
| --- a/pkg/typed_mock/test/typed_mock_test.dart
|
| +++ b/pkg/typed_mock/test/typed_mock_test.dart
|
| @@ -183,6 +183,14 @@ main() {
|
| });
|
| });
|
|
|
| + test('resetInteractions', () {
|
| + TestInterfaceMock obj = new TestInterfaceMock();
|
| + obj.testProperty;
|
| + obj.testMethod0();
|
| + resetInteractions(obj);
|
| + verifyZeroInteractions(obj);
|
| + });
|
| +
|
| group('verify', () {
|
| TestInterfaceMock obj;
|
| setUp(() {
|
|
|