blob: 93256726db433a8e1b40cf383924357780006ca0 [file] [log] [blame]
import 'package:flutter/services.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:wifi_info_flutter/wifi_info_flutter.dart';
void main() {
const MethodChannel channel = MethodChannel('wifi_info_flutter');
TestWidgetsFlutterBinding.ensureInitialized();
setUp(() {
channel.setMockMethodCallHandler((MethodCall methodCall) async {
return '42';
});
});
tearDown(() {
channel.setMockMethodCallHandler(null);
});
test('getPlatformVersion', () async {
expect(await WifiInfoFlutter.platformVersion, '42');
});
}