Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1588)

Side by Side Diff: test/db/properties_test.dart

Issue 2261453002: Implement missing interface member in mock ModelDB (Closed) Base URL: git@github.com:dart-lang/gcloud.git@master
Patch Set: Version 0.2.0+14 Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pubspec.yaml ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 gcloud.db.properties_test; 5 library gcloud.db.properties_test;
6 6
7 import 'dart:typed_data'; 7 import 'dart:typed_data';
8 8
9 import 'package:gcloud/db.dart'; 9 import 'package:gcloud/db.dart';
10 import 'package:gcloud/datastore.dart' as datastore; 10 import 'package:gcloud/datastore.dart' as datastore;
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 throw "Broken test"; 231 throw "Broken test";
232 } 232 }
233 return _datastoreKey; 233 return _datastoreKey;
234 } 234 }
235 235
236 Map<String, Property> propertiesForModel(modelDescription) => null; 236 Map<String, Property> propertiesForModel(modelDescription) => null;
237 Model fromDatastoreEntity(datastore.Entity entity) => null; 237 Model fromDatastoreEntity(datastore.Entity entity) => null;
238 datastore.Entity toDatastoreEntity(Model model) => null; 238 datastore.Entity toDatastoreEntity(Model model) => null;
239 String fieldNameToPropertyName(String kind, String fieldName) => null; 239 String fieldNameToPropertyName(String kind, String fieldName) => null;
240 String kindName(Type type) => null; 240 String kindName(Type type) => null;
241 Object toDatastoreValue(String kind, String fieldName, Object value) => null;
241 } 242 }
OLDNEW
« no previous file with comments | « pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698