2021-04-23 10:45:26 +05:30
|
|
|
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 14:06:07 +05:30
|
|
|
// test('getPlatformVersion', () async {
|
|
|
|
// expect(await ReceiveIntent.platformVersion, '42');
|
|
|
|
// });
|
2021-04-23 10:45:26 +05:30
|
|
|
}
|