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