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

Side by Side Diff: pkg/unittest/core_matchers.dart

Issue 10989013: Change IllegalArgumentException to ArgumentError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated co19 test expectations. Created 8 years, 2 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 5
6 /** 6 /**
7 * Returns a matcher that matches empty strings, maps or collections. 7 * Returns a matcher that matches empty strings, maps or collections.
8 */ 8 */
9 const Matcher isEmpty = const _Empty(); 9 const Matcher isEmpty = const _Empty();
10 10
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 const isException = const _Exception(); 416 const isException = const _Exception();
417 417
418 /** A matcher for functions that throw Exception */ 418 /** A matcher for functions that throw Exception */
419 const Matcher throwsException = const _Throws(isException); 419 const Matcher throwsException = const _Throws(isException);
420 420
421 class _Exception extends _ExceptionMatcher { 421 class _Exception extends _ExceptionMatcher {
422 const _Exception() : super("Exception"); 422 const _Exception() : super("Exception");
423 bool matches(item, MatchState matchState) => item is Exception; 423 bool matches(item, MatchState matchState) => item is Exception;
424 } 424 }
425 425
426 /** A matcher for IllegalArgumentExceptions. */ 426 /** A matcher for ArgumentErrors. */
427 const isIllegalArgumentException = const _IllegalArgumentException(); 427 const isArgumentError = const _ArgumentError();
428 428
429 /** A matcher for functions that throw IllegalArgumentException */ 429 /** A matcher for functions that throw ArgumentError */
430 const Matcher throwsIllegalArgumentException = 430 const Matcher throwsArgumentError =
431 const _Throws(isIllegalArgumentException); 431 const _Throws(isArgumentError);
432 432
433 class _IllegalArgumentException extends _ExceptionMatcher { 433 class _ArgumentError extends _ExceptionMatcher {
434 const _IllegalArgumentException() : super("IllegalArgumentException"); 434 const _ArgumentError() : super("ArgumentError");
435 bool matches(item, MatchState matchState) => item is IllegalArgumentException; 435 bool matches(item, MatchState matchState) => item is ArgumentError;
436 } 436 }
437 437
438 /** A matcher for IllegalJSRegExpExceptions. */ 438 /** A matcher for IllegalJSRegExpExceptions. */
439 const isIllegalJSRegExpException = const _IllegalJSRegExpException(); 439 const isIllegalJSRegExpException = const _IllegalJSRegExpException();
440 440
441 /** A matcher for functions that throw IllegalJSRegExpException */ 441 /** A matcher for functions that throw IllegalJSRegExpException */
442 const Matcher throwsIllegalJSRegExpException = 442 const Matcher throwsIllegalJSRegExpException =
443 const _Throws(isIllegalJSRegExpException); 443 const _Throws(isIllegalJSRegExpException);
444 444
445 class _IllegalJSRegExpException extends _ExceptionMatcher { 445 class _IllegalJSRegExpException extends _ExceptionMatcher {
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 final _matcher; 617 final _matcher;
618 final String _description; 618 final String _description;
619 619
620 const _Predicate(this._matcher, this._description); 620 const _Predicate(this._matcher, this._description);
621 621
622 bool matches(item, MatchState matchState) => _matcher(item); 622 bool matches(item, MatchState matchState) => _matcher(item);
623 623
624 Description describe(Description description) => 624 Description describe(Description description) =>
625 description.add(_description); 625 description.add(_description);
626 } 626 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698