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

Side by Side Diff: pkg/mock/lib/mock.dart

Issue 278613003: pkg/mock: fixes for v0.11 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 * A simple mocking/spy library. 6 * A simple mocking/spy library.
7 * 7 *
8 * To create a mock objects for some class T, create a new class using: 8 * To create a mock objects for some class T, create a new class using:
9 * 9 *
10 * class MockT extends Mock implements T {}; 10 * class MockT extends Mock implements T {};
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 export 'src/action.dart'; 108 export 'src/action.dart';
109 export 'src/behavior.dart'; 109 export 'src/behavior.dart';
110 export 'src/call_matcher.dart'; 110 export 'src/call_matcher.dart';
111 export 'src/log_entry.dart'; 111 export 'src/log_entry.dart';
112 export 'src/log_entry_list.dart'; 112 export 'src/log_entry_list.dart';
113 export 'src/mock.dart'; 113 export 'src/mock.dart';
114 export 'src/responder.dart'; 114 export 'src/responder.dart';
115 export 'src/result_matcher.dart'; 115 export 'src/result_matcher.dart';
116 export 'src/result_set_matcher.dart'; 116 export 'src/result_set_matcher.dart';
117 export 'src/times_matcher.dart'; 117 export 'src/times_matcher.dart';
118
kevmoo 2014/05/08 18:37:57 Functional change #1 - removed deprecated (and unu
119 import 'src/log_entry_list.dart';
120
121 /**
122 * [sharedLog] is not used in this library and is deprecated.
123 */
124 @deprecated
125 LogEntryList sharedLog = null;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698