blob: f2e44fcb9b9ccd3e2b1502cde99facd149151b22 [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
*/
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);
}
}