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.scale; |
| 10 |
| 11 import 'package:charted/core/utils.dart'; |
| 12 import 'package:charted/interpolators/interpolators.dart'; |
| 13 import 'package:charted/locale/locale.dart'; |
| 14 import 'package:charted/scale/scale.dart'; |
| 15 import 'package:unittest/unittest.dart'; |
| 16 |
| 17 part 'linear_scale_test.dart'; |
| 18 part 'log_scale_test.dart'; |
| 19 part 'ordinal_scale_test.dart'; |
| 20 part 'scale_util_test.dart'; |
| 21 part 'time_scale_test.dart'; |
| 22 |
| 23 scaleTests() { |
| 24 testScaleUtil(); |
| 25 testLinearScale(); |
| 26 testLogScale(); |
| 27 testOrdinalScale(); |
| 28 testTimeScale(); |
| 29 } |
OLD | NEW |