mirror of
https://github.com/RxReader/tencent_kit.git
synced 2025-06-04 04:55:04 +08:00
19 lines
429 B
Dart
19 lines
429 B
Dart
import 'package:flutter/services.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
TestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
const MethodChannel channel = MethodChannel('v7lin.github.io/tencent_kit');
|
|
|
|
setUp(() {
|
|
channel.setMockMethodCallHandler((MethodCall methodCall) async {});
|
|
});
|
|
|
|
tearDown(() {
|
|
channel.setMockMethodCallHandler(null);
|
|
});
|
|
|
|
test('smoke test', () async {});
|
|
}
|