| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 library dromaeo; | |
| 6 | |
| 7 import 'dart:async'; | |
| 8 import "dart:convert"; | |
| 9 import 'dart:html'; | |
| 10 import 'dart:math' as Math; | |
| 11 import 'package:unittest/unittest.dart'; | |
| 12 import 'package:unittest/html_config.dart'; | |
| 13 import '../../../samples/third_party/dromaeo/common/common.dart'; | |
| 14 | |
| 15 part '../../../samples/third_party/dromaeo/tests/Common.dart'; | |
| 16 part '../../../samples/third_party/dromaeo/tests/RunnerSuite.dart'; | |
| 17 | |
| 18 /** | |
| 19 * The smoketest equivalent of an individual test run, much like | |
| 20 * dom-attr-html.dart, dom-modify-html.dart, dom-query-html.dart and others. | |
| 21 */ | |
| 22 void main() { | |
| 23 new Suite(window, 'dom-nothing') | |
| 24 .prep(() {}) | |
| 25 .test('no-op', () {}) | |
| 26 .end(); | |
| 27 } | |
| 28 | |
| OLD | NEW |