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

Side by Side Diff: pkg/unittest/lib/matcher.dart

Issue 14173003: Remove Collection, Collections and clean up List/Set/Queue implementations of retain/remove. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 * The matcher library provides a 3rd generation assertion mechanism, drawing 5 * The matcher library provides a 3rd generation assertion mechanism, drawing
6 * inspiration from [Hamcrest](http://code.google.com/p/hamcrest/). 6 * inspiration from [Hamcrest](http://code.google.com/p/hamcrest/).
7 */ 7 */
8 library matcher; 8 library matcher;
9 9
10 import 'dart:async'; 10 import 'dart:async';
11 11
12 part 'src/basematcher.dart'; 12 part 'src/basematcher.dart';
13 part 'src/collection_matchers.dart'; 13 part 'src/iterable_matchers.dart';
14 part 'src/core_matchers.dart'; 14 part 'src/core_matchers.dart';
15 part 'src/description.dart'; 15 part 'src/description.dart';
16 part 'src/expect.dart'; 16 part 'src/expect.dart';
17 part 'src/future_matchers.dart'; 17 part 'src/future_matchers.dart';
18 part 'src/interfaces.dart'; 18 part 'src/interfaces.dart';
19 part 'src/map_matchers.dart'; 19 part 'src/map_matchers.dart';
20 part 'src/numeric_matchers.dart'; 20 part 'src/numeric_matchers.dart';
21 part 'src/operator_matchers.dart'; 21 part 'src/operator_matchers.dart';
22 part 'src/string_matchers.dart'; 22 part 'src/string_matchers.dart';
OLDNEW
« no previous file with comments | « pkg/scheduled_test/lib/src/schedule_error.dart ('k') | pkg/unittest/lib/src/collection_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698