OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 library mocks; | 5 library mocks; |
6 | 6 |
| 7 import 'dart:async'; |
| 8 |
7 import 'package:observatory/models.dart' as M; | 9 import 'package:observatory/models.dart' as M; |
8 | 10 |
| 11 part 'src/mocks/exceptions/connection_exception.dart'; |
| 12 |
| 13 part 'src/mocks/objects/error.dart'; |
9 part 'src/mocks/objects/event.dart'; | 14 part 'src/mocks/objects/event.dart'; |
10 part 'src/mocks/objects/class.dart'; | 15 part 'src/mocks/objects/class.dart'; |
11 part 'src/mocks/objects/isolate.dart'; | 16 part 'src/mocks/objects/isolate.dart'; |
| 17 part 'src/mocks/objects/notification.dart'; |
| 18 part 'src/mocks/objects/script.dart'; |
| 19 part 'src/mocks/objects/source_location.dart'; |
12 part 'src/mocks/objects/target.dart'; | 20 part 'src/mocks/objects/target.dart'; |
13 part 'src/mocks/objects/vm.dart'; | 21 part 'src/mocks/objects/vm.dart'; |
| 22 |
| 23 part 'src/mocks/repositories/notification.dart'; |
OLD | NEW |