mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 09:43:08 +00:00
328c30324c
This was a hairy test block, please review carefully. Special circumstances: file_resource_test.dart: deleted, depends on Resource class which was moved outside the SDK from_environment_const_type_undefined_test.dart, from_environment_const_type_test: change to expect compile-time errors for all error cases. Hacked up status files to enable non-strong/checked/non-checked modes to work in all cases. format_exception_test.dart: corelib is newer, has updated tests growable_list_test.dart: corelib is newer, with updated comments. Stripped runtime checking of checked mode. Also, this doesn't work, but should, with dartdevc, so added to exclusion list hash_map2_test.dart: corelib_strong version seems to be newer, has VM option comments BUG= R=rnystrom@google.com Review-Url: https://codereview.chromium.org/2989643002 .
18 lines
513 B
Dart
18 lines
513 B
Dart
// 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.
|
|
|
|
library exception_implementation_test;
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
main() {
|
|
final msg = 1;
|
|
try {
|
|
throw new Exception(msg);
|
|
Expect.fail("Unreachable");
|
|
} on Exception catch (e) {
|
|
Expect.isTrue(e is Exception);
|
|
Expect.equals("Exception: $msg", e.toString());
|
|
}
|
|
}
|