Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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; | |
| OLD | NEW |