blob: 22bf2f72bb2fb9406ec6d0b22c585d63e3918a8c [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 static void throws(void f(), [_CheckExceptionFn check = null, String reason = null])
* typedef bool _CheckExceptionFn(exception)
* Calls the function [f] and verifies that it throws an exception.
* The optional [check] function can provide additional validation that the correct exception is being thrown.
* @description Checks that exception thrown by the optional check function is not caught.
* @author varlax
* @reviewer msyabro
*/
import "../../../Utils/expect.dart";
main() {
var err = 234;
try {
Expect.throws((){throw new Exception();}, (e){throw err;});
Expect.fail("should not reach here");
} on int catch(i) {
Expect.identical(err, i);
}
}