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

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

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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
« no previous file with comments | « pkg/unittest/lib/html_enhanced_config.dart ('k') | pkg/unittest/lib/mock.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 * 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] and Ladislav Thon's [dart-matchers] 6 * inspiration from [Hamcrest] and Ladislav Thon's [dart-matchers]
7 * library. 7 * library.
8 * 8 *
9 * See [Hamcrest] http://en.wikipedia.org/wiki/Hamcrest 9 * See [Hamcrest] http://en.wikipedia.org/wiki/Hamcrest
10 * [Hamcrest] http://code.google.com/p/hamcrest/ 10 * [Hamcrest] http://code.google.com/p/hamcrest/
11 * [dart-matchers] https://github.com/Ladicek/dart-matchers 11 * [dart-matchers] https://github.com/Ladicek/dart-matchers
12 */ 12 */
13 library matcher; 13 library matcher;
14 14
15 import 'dart:async';
16
15 part 'src/basematcher.dart'; 17 part 'src/basematcher.dart';
16 part 'src/collection_matchers.dart'; 18 part 'src/collection_matchers.dart';
17 part 'src/core_matchers.dart'; 19 part 'src/core_matchers.dart';
18 part 'src/description.dart'; 20 part 'src/description.dart';
19 part 'src/expect.dart'; 21 part 'src/expect.dart';
20 part 'src/future_matchers.dart'; 22 part 'src/future_matchers.dart';
21 part 'src/interfaces.dart'; 23 part 'src/interfaces.dart';
22 part 'src/map_matchers.dart'; 24 part 'src/map_matchers.dart';
23 part 'src/numeric_matchers.dart'; 25 part 'src/numeric_matchers.dart';
24 part 'src/operator_matchers.dart'; 26 part 'src/operator_matchers.dart';
25 part 'src/string_matchers.dart'; 27 part 'src/string_matchers.dart';
OLDNEW
« no previous file with comments | « pkg/unittest/lib/html_enhanced_config.dart ('k') | pkg/unittest/lib/mock.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698