-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy patherror_stack_trace_test.dart
71 lines (58 loc) · 1.26 KB
/
error_stack_trace_test.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Copyright (c) 2013, 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.
// Formatting can break multitests, so don't format them.
// dart format off
import "package:expect/expect.dart";
void argument() {
throw new ArgumentError(499);
}
// Verify that
void noSuchMethod() {
(499 as dynamic).doesNotExist();
}
void nullThrown() {
throw null as dynamic;
}
void range() {
throw new RangeError.range(0, 1, 2);
}
abstract class A {
foo();
}
void unsupported() {
throw new UnsupportedError("unsupported");
}
void unimplemented() {
throw new UnimplementedError("unimplemented");
}
void state() {
[1, 2].single;
}
void cast() {
dynamic d = 1;
d as String;
}
main() {
List<Function> errorFunctions = [
argument,
noSuchMethod,
nullThrown, //# nullThrown: ok
range,
unsupported,
unimplemented,
state,
cast,
];
for (var f in errorFunctions) {
bool hasThrown = false;
try {
f();
} on Error catch (e) {
hasThrown = true;
Expect.isTrue(
e.stackTrace is StackTrace, "$e doesn't have a non-null stack trace");
}
Expect.isTrue(hasThrown);
}
}