amap_location_muka_test.dart 561 B

1234567891011121314151617181920212223
  1. import 'package:flutter/services.dart';
  2. import 'package:flutter_test/flutter_test.dart';
  3. import 'package:amap_location/amap_location.dart';
  4. void main() {
  5. const MethodChannel channel = MethodChannel('amap_locatio');
  6. TestWidgetsFlutterBinding.ensureInitialized();
  7. setUp(() {
  8. channel.setMockMethodCallHandler((MethodCall methodCall) async {
  9. return '42';
  10. });
  11. });
  12. tearDown(() {
  13. channel.setMockMethodCallHandler(null);
  14. });
  15. test('getPlatformVersion', () async {
  16. // expect(await AmapLocationMuka.platformVersion, '42');
  17. });
  18. }