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

View file

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