| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library test.frontend.throws_matcher; | 5 library test.frontend.throws_matcher; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:matcher/matcher.dart' hide fail, expect; | 9 import 'package:matcher/matcher.dart'; |
| 10 | 10 |
| 11 import '../backend/invoker.dart'; | 11 import '../backend/invoker.dart'; |
| 12 import '../utils.dart'; | 12 import '../utils.dart'; |
| 13 import 'expect.dart'; | 13 import 'expect.dart'; |
| 14 | 14 |
| 15 /// This can be used to match two kinds of objects: | 15 /// This can be used to match two kinds of objects: |
| 16 /// | 16 /// |
| 17 /// * A [Function] that throws an exception when called. The function cannot | 17 /// * A [Function] that throws an exception when called. The function cannot |
| 18 /// take any arguments. If you want to test that a function expecting | 18 /// take any arguments. If you want to test that a function expecting |
| 19 /// arguments throws, wrap it in another zero-argument function that calls | 19 /// arguments throws, wrap it in another zero-argument function that calls |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 mismatchDescription | 104 mismatchDescription |
| 105 .add('threw ') | 105 .add('threw ') |
| 106 .addDescriptionOf(matchState['exception']); | 106 .addDescriptionOf(matchState['exception']); |
| 107 if (verbose) { | 107 if (verbose) { |
| 108 mismatchDescription.add(' at ').add(matchState['stack'].toString()); | 108 mismatchDescription.add(' at ').add(matchState['stack'].toString()); |
| 109 } | 109 } |
| 110 return mismatchDescription; | 110 return mismatchDescription; |
| 111 } | 111 } |
| 112 } | 112 } |
| 113 } | 113 } |
| OLD | NEW |