blob: 44a5f58c8cbfb3a4555e2e6818232598af307f1f [file] [log] [blame] [edit]
// 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:image_picker_platform_interface/src/types/types.dart';
void main() {
group('MediaOptions', () {
test('createAndValidate does not throw when allowMultiple is true', () {
expect(
() => MediaOptions.createAndValidate(allowMultiple: true),
returnsNormally,
);
});
test('createAndValidate does not throw when allowMultiple is false', () {
expect(
() => MediaOptions.createAndValidate(allowMultiple: false),
returnsNormally,
);
});
test('createAndValidate does not throw error for correct limit', () {
expect(
() => MediaOptions.createAndValidate(allowMultiple: true, limit: 2),
returnsNormally,
);
});
test('createAndValidate throw error for to small limit', () {
expect(
() => MediaOptions.createAndValidate(allowMultiple: true, limit: 1),
throwsArgumentError,
);
expect(
() => MediaOptions.createAndValidate(allowMultiple: true, limit: 0),
throwsArgumentError,
);
expect(
() => MediaOptions.createAndValidate(allowMultiple: true, limit: -1),
throwsArgumentError,
);
});
test(
'createAndValidate throw error when allowMultiple is false and has limit',
() {
expect(
() => MediaOptions.createAndValidate(allowMultiple: false, limit: 2),
throwsArgumentError,
);
});
});
}