| 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 unittest.throws_matcher; | 5 library unittest.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' hide fail, expect; | 
| 10 | 10 | 
|  | 11 import '../backend/invoker.dart'; | 
|  | 12 import '../utils.dart'; | 
| 11 import 'expect.dart'; | 13 import 'expect.dart'; | 
| 12 import 'invoker.dart'; |  | 
| 13 import 'utils.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 | 
| 20 ///   the one you want to test. | 20 ///   the one you want to test. | 
| 21 /// | 21 /// | 
| 22 /// * A [Future] that completes with an exception. Note that this creates an | 22 /// * A [Future] that completes with an exception. Note that this creates an | 
| 23 ///   asynchronous expectation. The call to `expect()` that includes this will | 23 ///   asynchronous expectation. The call to `expect()` that includes this will | 
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 103       mismatchDescription | 103       mismatchDescription | 
| 104           .add('threw ') | 104           .add('threw ') | 
| 105           .addDescriptionOf(matchState['exception']); | 105           .addDescriptionOf(matchState['exception']); | 
| 106       if (verbose) { | 106       if (verbose) { | 
| 107         mismatchDescription.add(' at ').add(matchState['stack'].toString()); | 107         mismatchDescription.add(' at ').add(matchState['stack'].toString()); | 
| 108       } | 108       } | 
| 109       return mismatchDescription; | 109       return mismatchDescription; | 
| 110     } | 110     } | 
| 111   } | 111   } | 
| 112 } | 112 } | 
| OLD | NEW | 
|---|