Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Regenerate mocks with latest mockito.
  • Loading branch information
ditman committed May 19, 2022
commit d9f997c92239aaafa5168e9faecd7c60cac60ef5
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Mocks generated by Mockito 5.0.16 from annotations
// Mocks generated by Mockito 5.2.0 from annotations
// in google_maps_flutter_web_integration_tests/integration_test/google_maps_controller_test.dart.
// Do not manually edit this file.

Expand All @@ -8,6 +8,7 @@ import 'package:google_maps_flutter_platform_interface/google_maps_flutter_platf
import 'package:google_maps_flutter_web/google_maps_flutter_web.dart' as _i3;
import 'package:mockito/mockito.dart' as _i1;

// ignore_for_file: type=lint
// ignore_for_file: avoid_redundant_argument_values
// ignore_for_file: avoid_setters_without_getters
// ignore_for_file: comment_references
Expand Down Expand Up @@ -58,8 +59,6 @@ class MockCirclesController extends _i1.Mock implements _i3.CirclesController {
void bindToMap(int? mapId, _i2.GMap? googleMap) =>
super.noSuchMethod(Invocation.method(#bindToMap, [mapId, googleMap]),
returnValueForMissingStub: null);
@override
String toString() => super.toString();
}

/// A class which mocks [PolygonsController].
Expand Down Expand Up @@ -102,8 +101,6 @@ class MockPolygonsController extends _i1.Mock
void bindToMap(int? mapId, _i2.GMap? googleMap) =>
super.noSuchMethod(Invocation.method(#bindToMap, [mapId, googleMap]),
returnValueForMissingStub: null);
@override
String toString() => super.toString();
}

/// A class which mocks [PolylinesController].
Expand Down Expand Up @@ -146,8 +143,6 @@ class MockPolylinesController extends _i1.Mock
void bindToMap(int? mapId, _i2.GMap? googleMap) =>
super.noSuchMethod(Invocation.method(#bindToMap, [mapId, googleMap]),
returnValueForMissingStub: null);
@override
String toString() => super.toString();
}

/// A class which mocks [MarkersController].
Expand Down Expand Up @@ -201,6 +196,4 @@ class MockMarkersController extends _i1.Mock implements _i3.MarkersController {
void bindToMap(int? mapId, _i2.GMap? googleMap) =>
super.noSuchMethod(Invocation.method(#bindToMap, [mapId, googleMap]),
returnValueForMissingStub: null);
@override
String toString() => super.toString();
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Mocks generated by Mockito 5.0.16 from annotations
// Mocks generated by Mockito 5.2.0 from annotations
// in google_maps_flutter_web_integration_tests/integration_test/google_maps_plugin_test.dart.
// Do not manually edit this file.

Expand All @@ -9,6 +9,7 @@ import 'package:google_maps_flutter_platform_interface/google_maps_flutter_platf
import 'package:google_maps_flutter_web/google_maps_flutter_web.dart' as _i4;
import 'package:mockito/mockito.dart' as _i1;

// ignore_for_file: type=lint
// ignore_for_file: avoid_redundant_argument_values
// ignore_for_file: avoid_setters_without_getters
// ignore_for_file: comment_references
Expand All @@ -34,15 +35,15 @@ class _FakeLatLng_3 extends _i1.Fake implements _i3.LatLng {}
class MockGoogleMapController extends _i1.Mock
implements _i4.GoogleMapController {
@override
_i2.StreamController<_i3.MapEvent<dynamic>> get stream =>
_i2.StreamController<_i3.MapEvent<Object?>> get stream =>
(super.noSuchMethod(Invocation.getter(#stream),
returnValue: _FakeStreamController_0<_i3.MapEvent<dynamic>>())
as _i2.StreamController<_i3.MapEvent<dynamic>>);
returnValue: _FakeStreamController_0<_i3.MapEvent<Object?>>())
as _i2.StreamController<_i3.MapEvent<Object?>>);
@override
_i2.Stream<_i3.MapEvent<dynamic>> get events =>
_i2.Stream<_i3.MapEvent<Object?>> get events =>
(super.noSuchMethod(Invocation.getter(#events),
returnValue: Stream<_i3.MapEvent<dynamic>>.empty())
as _i2.Stream<_i3.MapEvent<dynamic>>);
returnValue: Stream<_i3.MapEvent<Object?>>.empty())
as _i2.Stream<_i3.MapEvent<Object?>>);
@override
bool get isInitialized =>
(super.noSuchMethod(Invocation.getter(#isInitialized), returnValue: false)
Expand Down Expand Up @@ -126,6 +127,4 @@ class MockGoogleMapController extends _i1.Mock
@override
void dispose() => super.noSuchMethod(Invocation.method(#dispose, []),
returnValueForMissingStub: null);
@override
String toString() => super.toString();
}