blob: f5b609c93ed3ec822d95452b08615dcd494cddf1 [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: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 {}