Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 import "package:expect/expect.dart"; | |
| 6 | |
| 7 class A { | |
| 8 static a() => b(); | |
| 9 static b() => c(); | |
| 10 static c() => throw "abc"; | |
| 11 } | |
| 12 | |
| 13 class B { | |
| 14 static a() => b(); | |
| 15 static b() => c(); | |
| 16 static c() { | |
| 17 try { | |
| 18 A.a(); | |
| 19 } catch (e) { | |
| 20 // This should produce a NoSuchMethodError. | |
| 21 var trace = e.stackTrace; | |
| 22 } | |
| 23 } | |
| 24 } | |
| 25 | |
| 26 main() { | |
| 27 bool hasThrown = false; | |
| 28 try { | |
| 29 B.a(); | |
| 30 } catch (e) { | |
| 31 hasThrown = true; | |
| 32 Expect.isTrue(e.stackTrace is StackTrace, | |
|
Ivan Posva
2013/08/12 21:17:39
Expect.isTrue(e.stackTrace.toString.contains("B.b"
siva
2013/08/12 23:46:56
Modified the test case to check for patterns in th
| |
| 33 "$e doesn't have a non-null stack trace"); | |
| 34 } | |
| 35 Expect.isTrue(hasThrown); | |
| 36 } | |
| OLD | NEW |