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'; | 7 import 'dart:async'; |
8 | 8 |
9 import 'package:observatory/models.dart' as M; | 9 import 'package:observatory/models.dart' as M; |
10 | 10 |
11 part 'src/mocks/exceptions/connection_exception.dart'; | 11 part 'src/mocks/exceptions/connection_exception.dart'; |
12 | 12 |
13 part 'src/mocks/objects/error.dart'; | 13 part 'src/mocks/objects/error.dart'; |
14 part 'src/mocks/objects/event.dart'; | 14 part 'src/mocks/objects/event.dart'; |
15 part 'src/mocks/objects/class.dart'; | 15 part 'src/mocks/objects/class.dart'; |
16 part 'src/mocks/objects/isolate.dart'; | 16 part 'src/mocks/objects/isolate.dart'; |
| 17 part 'src/mocks/objects/library.dart'; |
17 part 'src/mocks/objects/notification.dart'; | 18 part 'src/mocks/objects/notification.dart'; |
18 part 'src/mocks/objects/script.dart'; | 19 part 'src/mocks/objects/script.dart'; |
19 part 'src/mocks/objects/source_location.dart'; | 20 part 'src/mocks/objects/source_location.dart'; |
20 part 'src/mocks/objects/target.dart'; | 21 part 'src/mocks/objects/target.dart'; |
21 part 'src/mocks/objects/vm.dart'; | 22 part 'src/mocks/objects/vm.dart'; |
22 | 23 |
23 part 'src/mocks/repositories/notification.dart'; | 24 part 'src/mocks/repositories/notification.dart'; |
OLD | NEW |