diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-06-06 14:33:35 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-06-06 14:33:35 +0000 |
commit | 51bbe683d53acf187ebaca6af0e8dcf8dc2db6e7 (patch) | |
tree | c210178cbb44bd302e4dc2decc447468f2852961 /tests/labeled_axis_test.php | |
parent | c925b7cbd916a294e96d361585c396cd107a827e (diff) | |
download | zetacomponents-graph-51bbe683d53acf187ebaca6af0e8dcf8dc2db6e7.zip zetacomponents-graph-51bbe683d53acf187ebaca6af0e8dcf8dc2db6e7.tar.gz |
- Added outomatic colorization from pallets
Diffstat (limited to 'tests/labeled_axis_test.php')
-rw-r--r-- | tests/labeled_axis_test.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/labeled_axis_test.php b/tests/labeled_axis_test.php index c9b632f..6e95f5f 100644 --- a/tests/labeled_axis_test.php +++ b/tests/labeled_axis_test.php @@ -361,7 +361,7 @@ class ezcGraphLabeledAxisTest extends ezcTestCase ->expects( $this->at( 0 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 100, 190 ) ), $this->equalTo( new ezcGraphCoordinate( 500, 190 ) ), $this->equalTo( false ) @@ -401,7 +401,7 @@ class ezcGraphLabeledAxisTest extends ezcTestCase new ezcGraphCoordinate( 490, 185 ), new ezcGraphCoordinate( 490, 195 ), ) ), - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( true ) ); @@ -434,7 +434,7 @@ class ezcGraphLabeledAxisTest extends ezcTestCase ->expects( $this->at( 1 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 120, 194 ) ), $this->equalTo( new ezcGraphCoordinate( 120, 186 ) ), $this->equalTo( false ) @@ -443,7 +443,7 @@ class ezcGraphLabeledAxisTest extends ezcTestCase ->expects( $this->at( 2 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 240, 194 ) ), $this->equalTo( new ezcGraphCoordinate( 240, 186 ) ), $this->equalTo( false ) @@ -452,7 +452,7 @@ class ezcGraphLabeledAxisTest extends ezcTestCase ->expects( $this->at( 3 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 361, 194 ) ), $this->equalTo( new ezcGraphCoordinate( 361, 186 ) ), $this->equalTo( false ) @@ -461,7 +461,7 @@ class ezcGraphLabeledAxisTest extends ezcTestCase ->expects( $this->at( 4 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 481, 194 ) ), $this->equalTo( new ezcGraphCoordinate( 481, 186 ) ), $this->equalTo( false ) |