mirror of
https://github.com/RxReader/tencent_kit.git
synced 2025-06-17 08:33:46 +08:00
tencent_kit
This commit is contained in:
18
test/tencent_kit_test.dart
Normal file
18
test/tencent_kit_test.dart
Normal file
@ -0,0 +1,18 @@
|
||||
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 {});
|
||||
}
|
Reference in New Issue
Block a user