blob: 4695d8be18e84facde390fbd6dea1eff86831dd6 [file] [log] [blame]
// Copyright (c) 2016, 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 int checkValidRange(int start, int end, int length,
/// [String startName, String endName, String message])
/// ...
/// An end of null is considered equivalent to length.
/// ...
/// @description Checks that an end of null is equivalent to length
/// @author sgrekhov@unipro.ru
import "../../../Utils/expect.dart";
check(int start, int length) {
try {
RangeError.checkValidRange(start, null, length);
Expect.fail("RangeError expected");
} on RangeError catch (e) {
Expect.equals(0, e.start);
Expect.equals(length, e.end);
Expect.equals(start, e.invalidValue);
} catch (e) {
Expect.fail("Wrong exception type $e");
}
}
main() {
check(-1, 5);
check(6, 5);
RangeError.checkValidRange(0, null, 5);
RangeError.checkValidRange(5, null, 5);
}