| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library dromaeo; | 5 library dromaeo; |
| 6 import 'dart:async'; | |
| 7 import 'dart:html'; | 6 import 'dart:html'; |
| 8 import 'dart:json' as json; | 7 import 'dart:json' as json; |
| 9 import '../../../samples/third_party/dromaeo/common/common.dart'; | 8 import '../../../samples/third_party/dromaeo/common/common.dart'; |
| 10 import 'dart:math' as Math; | 9 import 'dart:math' as Math; |
| 11 import '../../../pkg/unittest/lib/unittest.dart'; | 10 import '../../../pkg/unittest/lib/unittest.dart'; |
| 12 import '../../../pkg/unittest/lib/html_config.dart'; | 11 import '../../../pkg/unittest/lib/html_config.dart'; |
| 13 part '../../../samples/third_party/dromaeo/tests/Common.dart'; | 12 part '../../../samples/third_party/dromaeo/tests/Common.dart'; |
| 14 part '../../../samples/third_party/dromaeo/tests/RunnerSuite.dart'; | 13 part '../../../samples/third_party/dromaeo/tests/RunnerSuite.dart'; |
| 15 | 14 |
| 16 /** | 15 /** |
| 17 * The smoketest equivalent of an individual test run, much like | 16 * The smoketest equivalent of an individual test run, much like |
| 18 * dom-attr-html.dart, dom-modify-html.dart, dom-query-html.dart and others. | 17 * dom-attr-html.dart, dom-modify-html.dart, dom-query-html.dart and others. |
| 19 */ | 18 */ |
| 20 void main() { | 19 void main() { |
| 21 new Suite(window, 'dom-nothing') | 20 new Suite(window, 'dom-nothing') |
| 22 .prep(() {}) | 21 .prep(() {}) |
| 23 .test('no-op', () {}) | 22 .test('no-op', () {}) |
| 24 .end(); | 23 .end(); |
| 25 } | 24 } |
| 26 | 25 |
| OLD | NEW |