diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-08-07 08:17:12 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-08-07 08:17:12 +0000 |
commit | 0c80b0f8ebf6c47237c9c99ea9f54248f1223df6 (patch) | |
tree | 54b87304e021327b7d00022a892f5cbcab00546c /tests/chart_test.php | |
parent | b31a0055fe42a14356400ebe6d7a8e5bebb26240 (diff) | |
download | zetacomponents-graph-0c80b0f8ebf6c47237c9c99ea9f54248f1223df6.zip zetacomponents-graph-0c80b0f8ebf6c47237c9c99ea9f54248f1223df6.tar.gz |
- Removed factory methods and replaced them with direct class instantiation.
Diffstat (limited to 'tests/chart_test.php')
-rw-r--r-- | tests/chart_test.php | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/chart_test.php b/tests/chart_test.php index 2173b72..10a9183 100644 --- a/tests/chart_test.php +++ b/tests/chart_test.php @@ -51,7 +51,7 @@ class ezcGraphChartTest extends ezcTestCase public function testSetTitle() { - $pieChart = ezcGraph::create( 'Pie' ); + $pieChart = new ezcGraphPieChart(); $pieChart->title = 'Test title'; $this->assertSame( @@ -66,7 +66,7 @@ class ezcGraphChartTest extends ezcTestCase public function testSetOptionsValidBackgroundImage() { - $pieChart = ezcGraph::create( 'Pie' ); + $pieChart = new ezcGraphPieChart(); $pieChart->options->backgroundImage = $this->basePath . $this->testFiles['jpeg']; $background = $this->getNonPublicProperty( $pieChart->options, 'backgroundImage' ); @@ -82,7 +82,7 @@ class ezcGraphChartTest extends ezcTestCase { try { - $pieChart = ezcGraph::create( 'Pie' ); + $pieChart = new ezcGraphPieChart(); $pieChart->options->backgroundImage = $this->basePath . $this->testFiles['invalid']; } catch ( ezcGraphInvalidImageFileException $e ) @@ -97,7 +97,7 @@ class ezcGraphChartTest extends ezcTestCase { try { - $pieChart = ezcGraph::create( 'Pie' ); + $pieChart = new ezcGraphPieChart(); $pieChart->options->backgroundImage = $this->basePath . $this->testFiles['nonexistant']; } catch ( ezcBaseFileNotFoundException $e ) @@ -110,7 +110,7 @@ class ezcGraphChartTest extends ezcTestCase public function testSetOptionsBackground() { - $pieChart = ezcGraph::create( 'Pie' ); + $pieChart = new ezcGraphPieChart(); $pieChart->options->background = '#FF0000'; $this->assertEquals( @@ -121,7 +121,7 @@ class ezcGraphChartTest extends ezcTestCase public function testSetOptionsBorder() { - $pieChart = ezcGraph::create( 'Pie' ); + $pieChart = new ezcGraphPieChart(); $pieChart->options->border = '#FF0000'; $this->assertEquals( @@ -132,7 +132,7 @@ class ezcGraphChartTest extends ezcTestCase public function testSetOptionsBorderWidth() { - $pieChart = ezcGraph::create( 'Pie' ); + $pieChart = new ezcGraphPieChart(); $pieChart->options->borderWidth = 3; $this->assertSame( 3, $this->getNonPublicProperty( $pieChart->options, 'borderWidth' ) ); @@ -142,7 +142,7 @@ class ezcGraphChartTest extends ezcTestCase { try { - $pieChart = ezcGraph::create( 'Pie' ); + $pieChart = new ezcGraphPieChart(); $pieChart->options->unknown = 'unknown'; } catch ( ezcBasePropertyNotFoundException $e ) @@ -155,7 +155,7 @@ class ezcGraphChartTest extends ezcTestCase public function testSetRenderer() { - $pieChart = ezcGraph::create( 'Pie' ); + $pieChart = new ezcGraphPieChart(); $renderer = $pieChart->renderer = new ezcGraphRenderer2d(); $this->assertSame( @@ -168,7 +168,7 @@ class ezcGraphChartTest extends ezcTestCase { try { - $pieChart = ezcGraph::create( 'Pie' ); + $pieChart = new ezcGraphPieChart(); $pieChart->renderer = 'invalid'; } catch ( ezcGraphInvalidRendererException $e ) @@ -181,7 +181,7 @@ class ezcGraphChartTest extends ezcTestCase public function testSetDriver() { - $pieChart = ezcGraph::create( 'Pie' ); + $pieChart = new ezcGraphPieChart(); $driver = $pieChart->driver = new ezcGraphGdDriver(); $this->assertSame( @@ -194,7 +194,7 @@ class ezcGraphChartTest extends ezcTestCase { try { - $pieChart = ezcGraph::create( 'Pie' ); + $pieChart = new ezcGraphPieChart(); $pieChart->driver = 'invalid'; } catch ( ezcGraphInvalidDriverException $e ) |