blob: 7b643de83e3e3460da3c66b05d39fe50158d179d [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter_test/flutter_test.dart';
import 'package:video_player_platform_interface/video_player_platform_interface.dart';
void main() {
// Store the initial instance before any tests change it.
final VideoPlayerPlatform initialInstance = VideoPlayerPlatform.instance;
test('default implementation init throws unimplemented', () async {
await expectLater(() => initialInstance.init(), throwsUnimplementedError);
});
test('default implementation setWebOptions throws unimplemented', () async {
await expectLater(
() => initialInstance.setWebOptions(
1,
const VideoPlayerWebOptions(),
),
throwsUnimplementedError,
);
});
}