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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 library dromaeo;
vsm 2013/01/30 22:35:51 Can you add a copyright notice on the new files?
2 import 'dart:html';
3 import 'dart:json' as json;
4 import '../../samples/third_party/dromaeo/common/common.dart';
5 import 'dart:math' as Math;
6 import '../../pkg/unittest/lib/unittest.dart';
7 import '../../pkg/unittest/lib/html_config.dart';
8 part '../../samples/third_party/dromaeo/tests/Common.dart';
9 part '../../samples/third_party/dromaeo/tests/RunnerSuite.dart';
10
11 /**
12 * The smoketest equivalent of an individual test run, much like
13 * dom-attr-html.dart, dom-modify-html.dart, dom-query-html.dart and others.
14 */
15 void main() {
16 new Suite(window, 'dom-nothing')
17 .prep(() {})
18 .test('no-op', () {})
19 .end();
20 }
21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698