blob: f59ac5ddf8cece0c05541bbbd7b8a4da8f4dc39b [file] [log] [blame]
// Copyright (c) 2011, 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.
// @dart = 2.9
/// @assertion Throws [Error] if [str] is [:null:].
/// @description Checks that the correct exception is thrown.
/// @author msyabro
import "../../../Utils/expect.dart";
check(String pattern, [bool multiLine = false, bool caseSensitive = true]) {
RegExp re = new RegExp(pattern, multiLine: multiLine,
caseSensitive: caseSensitive);
try {
re.stringMatch(null);
Expect.fail("Error is expected");
} on Error catch(e) {}
}
main() {
check("");
check("a");
check(r"^[^\n\r]+$", true, false);
}