mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
24 lines
619 B
Dart
24 lines
619 B
Dart
import 'package:flutter/services.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:cw_monero/cw_monero_method_channel.dart';
|
|
|
|
void main() {
|
|
MethodChannelCwMonero platform = MethodChannelCwMonero();
|
|
const MethodChannel channel = MethodChannel('cw_monero');
|
|
|
|
TestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
setUp(() {
|
|
channel.setMockMethodCallHandler((MethodCall methodCall) async {
|
|
return '42';
|
|
});
|
|
});
|
|
|
|
tearDown(() {
|
|
channel.setMockMethodCallHandler(null);
|
|
});
|
|
|
|
test('getPlatformVersion', () async {
|
|
expect(await platform.getPlatformVersion(), '42');
|
|
});
|
|
}
|