OLD | NEW |
---|---|
(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 | |
OLD | NEW |