amap_map/test/amap_flutter_map_test.dart

22 lines
501 B
Dart
Raw Permalink Normal View History

2023-12-22 21:23:24 +08:00
import 'package:flutter_test/flutter_test.dart';
void main() {
2023-12-22 21:41:04 +08:00
// const MethodChannel channel = MethodChannel('amap_map');
2023-12-22 21:23:24 +08:00
TestWidgetsFlutterBinding.ensureInitialized();
2023-12-22 21:41:04 +08:00
// setUp(() {
// channel.setMockMethodCallHandler((MethodCall methodCall) async {
// return '42';
// });
// });
2023-12-22 21:23:24 +08:00
2023-12-22 21:41:04 +08:00
// tearDown(() {
// channel.setMockMethodCallHandler(null);
2023-12-22 21:23:24 +08:00
// });
2023-12-22 21:41:04 +08:00
// // test('getPlatformVersion', () async {
// // expect(await AMapWiget.platformVersion, '42');
// // });
2023-12-22 21:23:24 +08:00
}