blob: 56f6ae91bf28799a3666ea28008a5e5aa7538de6 [file] [log] [blame]
// Copyright 2020 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:file_selector_platform_interface/file_selector_platform_interface.dart';
import 'package:file_selector_platform_interface/src/method_channel/method_channel_file_selector.dart';
void main() {
group('$FileSelectorPlatform', () {
test('$MethodChannelFileSelector() is the default instance', () {
expect(FileSelectorPlatform.instance,
isInstanceOf<MethodChannelFileSelector>());
});
test('Can be extended', () {
FileSelectorPlatform.instance = ExtendsFileSelectorPlatform();
});
});
}
class ExtendsFileSelectorPlatform extends FileSelectorPlatform {}