blob: bf0c9e9bbe3672888d3ec1c69c76f63db6f793e8 [file] [log] [blame]
// 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;
typedef Future<M.Context> ContextRepositoryMockCallback(
M.IsolateRef isolate, String id);
class ContextRepositoryMock implements M.ContextRepository {
final ContextRepositoryMockCallback _get;
ContextRepositoryMock({ContextRepositoryMockCallback getter}) : _get = getter;
Future<M.Context> get(M.IsolateRef isolate, String id) {
if (_get != null) {
return _get(isolate, id);
}
return new Future.value(null);
}
}