We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddfba29 commit 6aab5b1Copy full SHA for 6aab5b1
geolocator_platform_interface/test/geolocator_platform_interface_test.dart
@@ -165,6 +165,21 @@ void main() {
165
);
166
});
167
168
+ test(
169
+ // ignore: lines_longer_than_80_chars
170
+ 'Default implementation of updatePositionStream should throw unimplemented error',
171
+ () {
172
+ // Arrange
173
+ final geolocatorPlatform = ExtendsGeolocatorPlatform();
174
+
175
+ // Act & Assert
176
+ expect(
177
+ () => geolocatorPlatform.updatePositionStream(
178
+ locationSettings: LocationSettings()),
179
+ throwsUnimplementedError,
180
+ );
181
+ });
182
183
test(
184
// ignore: lines_longer_than_80_chars
185
'Default implementation of openAppSettings should throw unimplemented error',
0 commit comments