| Index: packages/charted/test.disabled/svg/svg_test.dart
|
| diff --git a/packages/charted/test.disabled/svg/svg_test.dart b/packages/charted/test.disabled/svg/svg_test.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b24461e65778a756706cf9823019b070d4773811
|
| --- /dev/null
|
| +++ b/packages/charted/test.disabled/svg/svg_test.dart
|
| @@ -0,0 +1,28 @@
|
| +/*
|
| + * Copyright 2014 Google Inc. All rights reserved.
|
| + *
|
| + * Use of this source code is governed by a BSD-style
|
| + * license that can be found in the LICENSE file or at
|
| + * https://developers.google.com/open-source/licenses/bsd
|
| + */
|
| +
|
| +library charted.test.svg;
|
| +
|
| +import 'dart:async';
|
| +import 'dart:html' show document, Element;
|
| +import 'package:charted/core/utils.dart';
|
| +import 'package:charted/scale/scale.dart';
|
| +import 'package:charted/selection/selection.dart';
|
| +import 'package:charted/svg/svg.dart';
|
| +import 'package:charted/interpolators/interpolators.dart';
|
| +import 'package:unittest/unittest.dart';
|
| +
|
| +part 'svg_arc_test.dart';
|
| +part 'svg_axis_test.dart';
|
| +part 'svg_line_test.dart';
|
| +
|
| +svgTests() {
|
| + testSvgArc();
|
| + testSvgAxis();
|
| + testSvgLine();
|
| +}
|
|
|