OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2014 Google Inc. All rights reserved. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style |
| 5 * license that can be found in the LICENSE file or at |
| 6 * https://developers.google.com/open-source/licenses/bsd |
| 7 */ |
| 8 |
| 9 library charted.test.svg; |
| 10 |
| 11 import 'dart:async'; |
| 12 import 'dart:html' show document, Element; |
| 13 import 'package:charted/core/utils.dart'; |
| 14 import 'package:charted/scale/scale.dart'; |
| 15 import 'package:charted/selection/selection.dart'; |
| 16 import 'package:charted/svg/svg.dart'; |
| 17 import 'package:charted/interpolators/interpolators.dart'; |
| 18 import 'package:unittest/unittest.dart'; |
| 19 |
| 20 part 'svg_arc_test.dart'; |
| 21 part 'svg_axis_test.dart'; |
| 22 part 'svg_line_test.dart'; |
| 23 |
| 24 svgTests() { |
| 25 testSvgArc(); |
| 26 testSvgAxis(); |
| 27 testSvgLine(); |
| 28 } |
OLD | NEW |