Rename project to just_audio

This commit is contained in:
Ryan Heise 2019-11-28 17:55:32 +11:00
parent 0574c041c5
commit 108821871d
27 changed files with 51 additions and 51 deletions

21
test/just_audio_test.dart Normal file
View file

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