OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 import 'package:appengine/src/appengine_context.dart'; |
| 6 import 'package:appengine/src/api_impl/raw_datastore_v3_impl.dart'; |
| 7 import 'package:appengine/src/protobuf_api/rpc/rpc_service_remote_api.dart'; |
| 8 |
| 9 import 'raw_datastore_test_impl.dart'; |
| 10 |
| 11 main() { |
| 12 var rpcService = new RPCServiceRemoteApi('127.0.0.1', 4444); |
| 13 var appengineContext = new AppengineContext( |
| 14 'dev', 'test-application', 'test-version', null, null, null); |
| 15 var datastore = |
| 16 new DatastoreV3RpcImpl(rpcService, appengineContext, '<invalid-ticket>'); |
| 17 |
| 18 runTests(datastore); |
| 19 } |
OLD | NEW |