diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-08-07 07:48:06 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-08-07 07:48:06 +0000 |
commit | b31a0055fe42a14356400ebe6d7a8e5bebb26240 (patch) | |
tree | e7bb23aeeb54e09055bfd73539a08f7460aedaa3 /tests/palette_test.php | |
parent | f0c3843559d630bcd9458e8f5b15185445dd173b (diff) | |
download | zetacomponents-graph-b31a0055fe42a14356400ebe6d7a8e5bebb26240.zip zetacomponents-graph-b31a0055fe42a14356400ebe6d7a8e5bebb26240.tar.gz |
- Renamed Dataset to DataSet
Diffstat (limited to 'tests/palette_test.php')
-rw-r--r-- | tests/palette_test.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/palette_test.php b/tests/palette_test.php index 5ed820f..c1ee41d 100644 --- a/tests/palette_test.php +++ b/tests/palette_test.php @@ -129,55 +129,55 @@ class ezcGraphPaletteTest extends ezcTestCase $this->assertEquals( ezcGraphColor::fromHex( '#3465A4' ), $chart->palette->dataSetColor, - 'Dataset color not properly set.' + 'DataSet color not properly set.' ); $this->assertEquals( ezcGraphColor::fromHex( '#4E9A06' ), $chart->palette->dataSetColor, - 'Dataset color not properly set.' + 'DataSet color not properly set.' ); $this->assertEquals( ezcGraphColor::fromHex( '#CC0000' ), $chart->palette->dataSetColor, - 'Dataset color not properly set.' + 'DataSet color not properly set.' ); $this->assertEquals( ezcGraphColor::fromHex( '#EDD400' ), $chart->palette->dataSetColor, - 'Dataset color not properly set.' + 'DataSet color not properly set.' ); $this->assertEquals( ezcGraphColor::fromHex( '#75505B' ), $chart->palette->dataSetColor, - 'Dataset color not properly set.' + 'DataSet color not properly set.' ); $this->assertEquals( ezcGraphColor::fromHex( '#F57900' ), $chart->palette->dataSetColor, - 'Dataset color not properly set.' + 'DataSet color not properly set.' ); $this->assertEquals( ezcGraphColor::fromHex( '#204A87' ), $chart->palette->dataSetColor, - 'Dataset color not properly set.' + 'DataSet color not properly set.' ); $this->assertEquals( ezcGraphColor::fromHex( '#C17D11' ), $chart->palette->dataSetColor, - 'Dataset color not properly set.' + 'DataSet color not properly set.' ); $this->assertEquals( ezcGraphColor::fromHex( '#3465A4' ), $chart->palette->dataSetColor, - 'Dataset color not properly set.' + 'DataSet color not properly set.' ); } @@ -286,7 +286,7 @@ class ezcGraphPaletteTest extends ezcTestCase ); } - public function testDatasetAutomaticColorization() + public function testDataSetAutomaticColorization() { $chart = ezcGraph::create( 'Line' ); $chart['income'] = array( 2000 => 2345.2, 2456.3, 2567.4 ); |