diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-06-07 12:28:53 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-06-07 12:28:53 +0000 |
commit | c8ce91759e37ab7afb61068862e4a057ce1aa5b8 (patch) | |
tree | ce983224b7f0259d8f59dee891cdbede9104a6a9 /tests/chart_test.php | |
parent | 03c4ad60f8fd30891fbbf981f6d56f6b1b5007c7 (diff) | |
download | zetacomponents-graph-c8ce91759e37ab7afb61068862e4a057ce1aa5b8.zip zetacomponents-graph-c8ce91759e37ab7afb61068862e4a057ce1aa5b8.tar.gz |
- Cleaned up tests
Diffstat (limited to 'tests/chart_test.php')
-rw-r--r-- | tests/chart_test.php | 97 |
1 files changed, 14 insertions, 83 deletions
diff --git a/tests/chart_test.php b/tests/chart_test.php index a1ee7c4..2b8d8ce 100644 --- a/tests/chart_test.php +++ b/tests/chart_test.php @@ -51,15 +51,8 @@ class ezcGraphChartTest extends ezcTestCase public function testSetTitle() { - try - { - $pieChart = ezcGraph::create( 'Pie' ); - $pieChart->title = 'Test title'; - } - catch ( Exception $e ) - { - $this->fail( $e->getMessage() ); - } + $pieChart = ezcGraph::create( 'Pie' ); + $pieChart->title = 'Test title'; $this->assertSame( 'Test title', @@ -73,15 +66,8 @@ class ezcGraphChartTest extends ezcTestCase public function testSetOptionsValidBackgroundImage() { - try - { - $pieChart = ezcGraph::create( 'Pie' ); - $pieChart->options->backgroundImage = $this->basePath . $this->testFiles['jpeg']; - } - catch ( Exception $e ) - { - $this->fail( $e->getMessage() ); - } + $pieChart = ezcGraph::create( 'Pie' ); + $pieChart->options->backgroundImage = $this->basePath . $this->testFiles['jpeg']; $this->assertProtectedPropertySame( $pieChart->options, 'backgroundImage', $this->basePath . $this->testFiles['jpeg'] ); } @@ -97,10 +83,6 @@ class ezcGraphChartTest extends ezcTestCase { return true; } - catch ( Exception $e ) - { - $this->fail( $e->getMessage() ); - } $this->fail( 'Expected ezcGraphInvalidImageFileException' ); } @@ -116,25 +98,14 @@ class ezcGraphChartTest extends ezcTestCase { return true; } - catch ( Exception $e ) - { - $this->fail( $e->getMessage() ); - } $this->fail( 'Expected ezcBaseFileNotFoundException' ); } public function testSetOptionsBackground() { - try - { - $pieChart = ezcGraph::create( 'Pie' ); - $pieChart->options->background = '#FF0000'; - } - catch ( Exception $e ) - { - $this->fail( $e->getMessage() ); - } + $pieChart = ezcGraph::create( 'Pie' ); + $pieChart->options->background = '#FF0000'; $this->assertEquals( ezcGraphColor::fromHex( 'FF0000' ), @@ -144,15 +115,8 @@ class ezcGraphChartTest extends ezcTestCase public function testSetOptionsBorder() { - try - { - $pieChart = ezcGraph::create( 'Pie' ); - $pieChart->options->border = '#FF0000'; - } - catch ( Exception $e ) - { - $this->fail( $e->getMessage() ); - } + $pieChart = ezcGraph::create( 'Pie' ); + $pieChart->options->border = '#FF0000'; $this->assertEquals( ezcGraphColor::fromHex( 'FF0000' ), @@ -162,15 +126,8 @@ class ezcGraphChartTest extends ezcTestCase public function testSetOptionsBorderWidth() { - try - { - $pieChart = ezcGraph::create( 'Pie' ); - $pieChart->options->borderWidth = 3; - } - catch ( Exception $e ) - { - $this->fail( $e->getMessage() ); - } + $pieChart = ezcGraph::create( 'Pie' ); + $pieChart->options->borderWidth = 3; $this->assertProtectedPropertySame( $pieChart->options, 'borderWidth', 3 ); } @@ -186,25 +143,14 @@ class ezcGraphChartTest extends ezcTestCase { return true; } - catch ( Exception $e ) - { - $this->fail( $e->getMessage() ); - } $this->fail( 'Expected ezcBasePropertyNotFoundException' ); } public function testSetRenderer() { - try - { - $pieChart = ezcGraph::create( 'Pie' ); - $renderer = $pieChart->renderer = new ezcGraphRenderer2D(); - } - catch ( Exception $e ) - { - $this->fail( $e->getMessage() ); - } + $pieChart = ezcGraph::create( 'Pie' ); + $renderer = $pieChart->renderer = new ezcGraphRenderer2D(); $this->assertSame( $renderer, @@ -223,25 +169,14 @@ class ezcGraphChartTest extends ezcTestCase { return true; } - catch ( Exception $e ) - { - $this->fail( $e->getMessage() ); - } $this->fail( 'Expected ezcGraphInvalidRendererException' ); } public function testSetDriver() { - try - { - $pieChart = ezcGraph::create( 'Pie' ); - $driver = $pieChart->driver = new ezcGraphGdDriver(); - } - catch ( Exception $e ) - { - $this->fail( $e->getMessage() ); - } + $pieChart = ezcGraph::create( 'Pie' ); + $driver = $pieChart->driver = new ezcGraphGdDriver(); $this->assertSame( $driver, @@ -260,10 +195,6 @@ class ezcGraphChartTest extends ezcTestCase { return true; } - catch ( Exception $e ) - { - $this->fail( $e->getMessage() ); - } $this->fail( 'Expected ezcGraphInvalidDriverException' ); } |