| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |