Chromium Code Reviews| Index: dart/tests/language/src/CodeAfterTryIsExecutedTest.dart |
| =================================================================== |
| --- dart/tests/language/src/CodeAfterTryIsExecutedTest.dart (revision 4458) |
| +++ dart/tests/language/src/CodeAfterTryIsExecutedTest.dart (working copy) |
| @@ -10,5 +10,5 @@ |
| exception = ex; |
| } |
| Expect.isTrue(exception is String); |
| - throw 'foo'; |
| + throw 'foo'; /// 01: runtime error |
|
kasperl
2012/02/22 16:51:08
Why do you need this to be a negative test in the
ahe
2012/02/22 16:54:09
What this is testing breaks Expect.throws ;-)
ngeoffray
2012/02/22 16:57:18
I added a comment at the top of the file.
|
| } |