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

Unified Diff: pkg/appengine/test/integration/raw_datastore_v3_test.dart

Issue 804973002: Add appengine/gcloud/mustache dependencies. (Closed) Base URL: git@github.com:dart-lang/pub-dartlang-dart.git@master
Patch Set: Added AUTHORS/LICENSE/PATENTS files Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/appengine/test/integration/raw_datastore_test_impl.dart ('k') | pkg/appengine/test/logging_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/appengine/test/integration/raw_datastore_v3_test.dart
diff --git a/pkg/appengine/test/integration/raw_datastore_v3_test.dart b/pkg/appengine/test/integration/raw_datastore_v3_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..1b96b212072cf9030da2b26567a182ba87254f7f
--- /dev/null
+++ b/pkg/appengine/test/integration/raw_datastore_v3_test.dart
@@ -0,0 +1,19 @@
+// Copyright (c) 2014, 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.
+
+import 'package:appengine/src/appengine_context.dart';
+import 'package:appengine/src/api_impl/raw_datastore_v3_impl.dart';
+import 'package:appengine/src/protobuf_api/rpc/rpc_service_remote_api.dart';
+
+import 'raw_datastore_test_impl.dart';
+
+main() {
+ var rpcService = new RPCServiceRemoteApi('127.0.0.1', 4444);
+ var appengineContext = new AppengineContext(
+ 'dev', 'test-application', 'test-version', null, null, null);
+ var datastore =
+ new DatastoreV3RpcImpl(rpcService, appengineContext, '<invalid-ticket>');
+
+ runTests(datastore);
+}
« no previous file with comments | « pkg/appengine/test/integration/raw_datastore_test_impl.dart ('k') | pkg/appengine/test/logging_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698