OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library string_scanner.test.utils; |
| 6 |
| 7 import 'package:unittest/unittest.dart'; |
| 8 |
| 9 /// Returns a matcher that asserts that a closure throws a [FormatException] |
| 10 /// with the given [message]. |
| 11 Matcher throwsFormattedError(String message) { |
| 12 return throwsA(predicate((error) { |
| 13 expect(error, isFormatException); |
| 14 expect(error.message, equals(message)); |
| 15 return true; |
| 16 })); |
| 17 } |
OLD | NEW |