We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5273dab commit f4ca732Copy full SHA for f4ca732
packages/video_player/video_player/CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## NEXT
2
+
3
+* Fixes order-dependent unit tests.
4
5
## 2.4.2
6
7
* Minor fixes for new analysis options.
packages/video_player/video_player/test/video_player_test.dart
@@ -958,6 +958,13 @@ void main() {
958
});
959
960
group('VideoPlayerOptions', () {
961
+ late FakeVideoPlayerPlatform fakeVideoPlayerPlatform;
962
963
+ setUp(() {
964
+ fakeVideoPlayerPlatform = FakeVideoPlayerPlatform();
965
+ VideoPlayerPlatform.instance = fakeVideoPlayerPlatform;
966
+ });
967
968
test('setMixWithOthers', () async {
969
final VideoPlayerController controller = VideoPlayerController.file(
970
File(''),
0 commit comments