just_audio/test/just_audio_test.dart

22 lines
501 B
Dart
Raw Normal View History

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);
});
// test('getPlatformVersion', () async {
// expect(await AudioPlayer.platformVersion, '42');
// });
2019-11-25 14:50:21 +00:00
}