diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-07-24 13:18:08 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-07-24 13:18:08 +0000 |
commit | 71789ffa110bba70d34bf937b315b10ee8c17aad (patch) | |
tree | 9ad6d196ac175c9e9562b90d6bd00396a428cde4 /tests/suite.php | |
parent | ff849eb9f302289b044b9f98eadc02cca4ed2130 (diff) | |
download | zetacomponents-graph-71789ffa110bba70d34bf937b315b10ee8c17aad.zip zetacomponents-graph-71789ffa110bba70d34bf937b315b10ee8c17aad.tar.gz |
- Added axis label renderer for centered labels
- Fixed: Do not draw grids and steps on other axis
Diffstat (limited to 'tests/suite.php')
-rw-r--r-- | tests/suite.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/suite.php b/tests/suite.php index 99d5f7f..a7b7527 100644 --- a/tests/suite.php +++ b/tests/suite.php @@ -28,6 +28,7 @@ require_once 'numeric_axis_test.php'; require_once 'labeled_axis_test.php'; require_once 'renderer_2d_test.php'; require_once 'axis_exact_renderer_test.php'; +require_once 'axis_centered_renderer_test.php'; require_once 'driver_gd_test.php'; require_once 'driver_svg_test.php'; require_once 'font_test.php'; @@ -58,6 +59,7 @@ class ezcGraphSuite extends ezcTestSuite $this->addTest( ezcGraphLabeledAxisTest::suite() ); $this->addTest( ezcGraphRenderer2dTest::suite() ); $this->addTest( ezcGraphAxisExactRendererTest::suite() ); + $this->addTest( ezcGraphAxisCenteredRendererTest::suite() ); $this->addTest( ezcGraphGdDriverTest::suite() ); $this->addTest( ezcGraphSvgDriverTest::suite() ); $this->addTest( ezcGraphFontTest::suite() ); |