2021-04-23 07:15:26 +02:00
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
const MethodChannel channel = MethodChannel('receive_intent');
|
|
|
|
|
|
|
|
TestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
|
|
|
|
setUp(() {
|
|
|
|
channel.setMockMethodCallHandler((MethodCall methodCall) async {
|
|
|
|
return '42';
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
tearDown(() {
|
|
|
|
channel.setMockMethodCallHandler(null);
|
|
|
|
});
|
|
|
|
|
2021-04-23 10:36:07 +02:00
|
|
|
// test('getPlatformVersion', () async {
|
|
|
|
// expect(await ReceiveIntent.platformVersion, '42');
|
|
|
|
// });
|
2021-04-23 07:15:26 +02:00
|
|
|
}
|