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

Unified Diff: tests/html/dromaeo_noop/dromaeo_smoke.dart

Issue 12086028: Fix up dromaeo after lib v2 merge and add Dromaeo smoketest to prevent future (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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: tests/html/dromaeo_noop/dromaeo_smoke.dart
diff --git a/tests/html/dromaeo_noop/dromaeo_smoke.dart b/tests/html/dromaeo_noop/dromaeo_smoke.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c3124c02f5f9cce1e15f1835a89ba118c33df024
--- /dev/null
+++ b/tests/html/dromaeo_noop/dromaeo_smoke.dart
@@ -0,0 +1,21 @@
+library dromaeo;
vsm 2013/01/30 22:35:51 Can you add a copyright notice on the new files?
+import 'dart:html';
+import 'dart:json' as json;
+import '../../samples/third_party/dromaeo/common/common.dart';
+import 'dart:math' as Math;
+import '../../pkg/unittest/lib/unittest.dart';
+import '../../pkg/unittest/lib/html_config.dart';
+part '../../samples/third_party/dromaeo/tests/Common.dart';
+part '../../samples/third_party/dromaeo/tests/RunnerSuite.dart';
+
+/**
+ * The smoketest equivalent of an individual test run, much like
+ * dom-attr-html.dart, dom-modify-html.dart, dom-query-html.dart and others.
+ */
+void main() {
+ new Suite(window, 'dom-nothing')
+ .prep(() {})
+ .test('no-op', () {})
+ .end();
+}
+

Powered by Google App Engine
This is Rietveld 408576698