This commit is contained in:
hh
2022-01-24 16:10:41 +08:00
commit e33c5a9737
69 changed files with 2056 additions and 0 deletions

View File

@ -0,0 +1,23 @@
import 'package:flutter/services.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:iflytek_speech_demo/iflytek_speech_demo.dart';
void main() {
const MethodChannel channel = MethodChannel('iflytek_speech_demo');
TestWidgetsFlutterBinding.ensureInitialized();
setUp(() {
channel.setMockMethodCallHandler((MethodCall methodCall) async {
return '42';
});
});
tearDown(() {
channel.setMockMethodCallHandler(null);
});
test('getPlatformVersion', () async {
expect(await IflytekSpeechDemo.platformVersion, '42');
});
}