blob: 929aa614b1bf5b047ec9ec76fd5b83c4bbf9a80f [file] [log] [blame]
/*
* Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion void fillRange(int start, int end, [ E fillValue ]
* This operation is not supported by an unmodifiable list.
* @description Checks that [fillRange] method is not supported.
* @author iarkh@unipro.ru
*/
import "dart:collection";
import "../../../Utils/expect.dart";
main() {
UnmodifiableListView l = new UnmodifiableListView([1, 2, 3, 4, 5]);
Expect.throws(() { l.fillRange(1, 2); }, (e) => e is UnsupportedError);
Expect.throws(() { l.fillRange(1, -10); }, (e) => e is UnsupportedError);
Expect.throws(() { l.fillRange(1, 2, 3); }, (e) => e is UnsupportedError);
}