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

Unified Diff: services/dart/dart_apptests/main.dart

Issue 971083002: Create an apptesting framework for dart. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Update upload_binaries.py to add the apptest.dartzip artifact. Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: services/dart/dart_apptests/main.dart
diff --git a/services/dart/dart_apptests/main.dart b/services/dart/dart_apptests/main.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c193530499aaa1191d82f2541cdbd053ab04ab94
--- /dev/null
+++ b/services/dart/dart_apptests/main.dart
@@ -0,0 +1,13 @@
+// Copyright 2015 The Chromium Authors. 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:apptest/apptest.dart';
+import 'package:services/dart/test/echo_service.mojom.dart';
+
+import 'echo_apptests.dart';
+import 'pingpong_apptests.dart';
+
+main(List args) {
+ runAppTests(args[0], [echoApptests, pingpongApptests]);
+}

Powered by Google App Engine
This is Rietveld 408576698