Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: tests/corelib_2/error_stack_trace1_test.dart

Issue 2987793002: Migrate test block 7 to Dart 2.0. (Closed)
Patch Set: Final review comment, dropping static multitest Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import "package:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 6
7 class A { 7 class A {
8 static Aa() => Ab(); 8 static Aa() => Ab();
9 static Ab() => Ac(); 9 static Ab() => Ac();
10 static Ac() => throw "abc"; 10 static Ac() => throw "abc";
11 } 11 }
12 12
13 class B { 13 class B {
14 static Ba() => Bb(); 14 static Ba() => Bb();
15 static Bb() => Bc(); 15 static Bb() => Bc();
16 static Bc() { 16 static Bc() {
17 try { 17 try {
18 A.Aa(); 18 A.Aa();
19 } catch (e) { 19 } catch (e) {
20 // This should produce a NoSuchMethodError. 20 // This should produce a NoSuchMethodError.
21 var trace = e.stackTrace; 21 var trace = e.stackTrace;
22 } 22 }
23 } 23 }
24 } 24 }
25 25
26 main() { 26 main() {
27 bool hasThrown = false; 27 bool hasThrown = false;
28 try { 28 try {
29 B.Ba(); 29 B.Ba();
30 } catch (e) { 30 } catch (e, stackTrace) {
31 hasThrown = true; 31 hasThrown = true;
32 var trace = e.stackTrace.toString(); 32 var trace = stackTrace.toString();
33 print(trace); 33 print(trace);
34 Expect.isTrue(trace.contains("Bc")); 34 Expect.isTrue(trace.contains("Bc"));
35 Expect.isTrue(trace.contains("Bb")); 35 Expect.isTrue(trace.contains("Bb"));
36 Expect.isTrue(trace.contains("Ba")); 36 Expect.isTrue(trace.contains("Ba"));
37 Expect.isTrue(trace.contains("main")); 37 Expect.isTrue(trace.contains("main"));
38 } 38 }
39 Expect.isTrue(hasThrown); 39 Expect.isTrue(hasThrown);
40 } 40 }
OLDNEW
« no previous file with comments | « tests/corelib_2/dynamic_nosuchmethod_test.dart ('k') | tests/corelib_2/error_stack_trace2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698