2019-11-25 14:50:21 +00:00
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
2019-11-28 06:55:32 +00:00
|
|
|
import 'package:just_audio/just_audio.dart';
|
2019-11-25 14:50:21 +00:00
|
|
|
|
|
|
|
void main() {
|
2019-11-28 06:55:32 +00:00
|
|
|
const MethodChannel channel = MethodChannel('just_audio');
|
2019-11-25 14:50:21 +00:00
|
|
|
|
|
|
|
setUp(() {
|
|
|
|
channel.setMockMethodCallHandler((MethodCall methodCall) async {
|
|
|
|
return '42';
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
tearDown(() {
|
|
|
|
channel.setMockMethodCallHandler(null);
|
|
|
|
});
|
|
|
|
|
2020-04-20 04:19:43 +00:00
|
|
|
// test('getPlatformVersion', () async {
|
|
|
|
// expect(await AudioPlayer.platformVersion, '42');
|
|
|
|
// });
|
2019-11-25 14:50:21 +00:00
|
|
|
}
|