summaryrefslogtreecommitdiffstats
path: root/tests/legend_test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/legend_test.php')
-rw-r--r--tests/legend_test.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/legend_test.php b/tests/legend_test.php
index bd125de..2396d4c 100644
--- a/tests/legend_test.php
+++ b/tests/legend_test.php
@@ -55,7 +55,7 @@ class ezcGraphLegendTest extends ezcTestCase
public function testFactoryLegend()
{
- $chart = ezcGraph::create( 'Pie' );
+ $chart = new ezcGraphPieChart();
$this->assertTrue(
$chart->legend instanceof ezcGraphChartElementLegend
@@ -64,7 +64,7 @@ class ezcGraphLegendTest extends ezcTestCase
public function testLegendSetBackground()
{
- $chart = ezcGraph::create( 'Pie' );
+ $chart = new ezcGraphPieChart();
$chart->legend->background = '#FF0000';
$this->assertEquals(
@@ -80,7 +80,7 @@ class ezcGraphLegendTest extends ezcTestCase
public function testLegendSetBorder()
{
- $chart = ezcGraph::create( 'Pie' );
+ $chart = new ezcGraphPieChart();
$chart->legend->border = '#FF0000';
$this->assertEquals(
@@ -96,7 +96,7 @@ class ezcGraphLegendTest extends ezcTestCase
public function testLegendSetBorderWidth()
{
- $chart = ezcGraph::create( 'Pie' );
+ $chart = new ezcGraphPieChart();
$chart->legend->borderWidth = 1;
$this->assertEquals(
@@ -112,7 +112,7 @@ class ezcGraphLegendTest extends ezcTestCase
public function testLegendSetPosition()
{
- $chart = ezcGraph::create( 'Pie' );
+ $chart = new ezcGraphPieChart();
$chart->legend->position = ezcGraph::LEFT;
$this->assertEquals(
OpenPOWER on IntegriCloud