OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library mocks; |
| 6 |
| 7 import 'dart:async'; |
| 8 |
| 9 import 'package:observatory/models.dart' as M; |
| 10 |
| 11 part 'src/mocks/exceptions/connection_exception.dart'; |
| 12 |
| 13 part 'src/mocks/objects/error.dart'; |
| 14 part 'src/mocks/objects/event.dart'; |
| 15 part 'src/mocks/objects/isolate.dart'; |
| 16 part 'src/mocks/objects/notification.dart'; |
| 17 part 'src/mocks/objects/script.dart'; |
| 18 part 'src/mocks/objects/source_location.dart'; |
| 19 part 'src/mocks/objects/vm.dart'; |
| 20 |
| 21 part 'src/mocks/repositories/notification.dart'; |
OLD | NEW |