| Index: runtime/observatory/tests/observatory_ui/mocks/objects/objectstore.dart
|
| diff --git a/runtime/observatory/tests/observatory_ui/mocks/objects/objectstore.dart b/runtime/observatory/tests/observatory_ui/mocks/objects/objectstore.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ee1216ce8e71e58163744939b7e4acab4803e012
|
| --- /dev/null
|
| +++ b/runtime/observatory/tests/observatory_ui/mocks/objects/objectstore.dart
|
| @@ -0,0 +1,19 @@
|
| +// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +part of mocks;
|
| +
|
| +class ObjectStoreMock implements M.ObjectStore {
|
| + final Iterable<M.NamedField> fields;
|
| +
|
| + const ObjectStoreMock({this.fields: const []});
|
| +}
|
| +
|
| +class NamedFieldMock implements M.NamedField {
|
| + final String name;
|
| + final M.ObjectRef value;
|
| +
|
| + const NamedFieldMock({this.name: 'field-name',
|
| + this.value: const InstanceRefMock()});
|
| +}
|
|
|