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/numeric_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/numeric_axis_test.php')
-rw-r--r-- | tests/numeric_axis_test.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/numeric_axis_test.php b/tests/numeric_axis_test.php index 22ce83e..6dd396a 100644 --- a/tests/numeric_axis_test.php +++ b/tests/numeric_axis_test.php @@ -645,7 +645,7 @@ class ezcGraphNumericAxisTest extends ezcTestCase ->expects( $this->at( 5 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 120, 200 ) ), $this->equalTo( new ezcGraphCoordinate( 120, 0 ) ), $this->equalTo( false ) @@ -685,7 +685,7 @@ class ezcGraphNumericAxisTest extends ezcTestCase new ezcGraphCoordinate( 123, 5 ), new ezcGraphCoordinate( 118, 5 ), ) ), - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( true ) ); @@ -719,7 +719,7 @@ class ezcGraphNumericAxisTest extends ezcTestCase ->expects( $this->at( 6 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 124, 190 ) ), $this->equalTo( new ezcGraphCoordinate( 116, 190 ) ), $this->equalTo( false ) @@ -728,7 +728,7 @@ class ezcGraphNumericAxisTest extends ezcTestCase ->expects( $this->at( 7 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 124, 130 ) ), $this->equalTo( new ezcGraphCoordinate( 116, 130 ) ), $this->equalTo( false ) @@ -737,7 +737,7 @@ class ezcGraphNumericAxisTest extends ezcTestCase ->expects( $this->at( 8 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 124, 70 ) ), $this->equalTo( new ezcGraphCoordinate( 116, 70 ) ), $this->equalTo( false ) @@ -746,7 +746,7 @@ class ezcGraphNumericAxisTest extends ezcTestCase ->expects( $this->at( 9 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 124, 10 ) ), $this->equalTo( new ezcGraphCoordinate( 116, 10 ) ), $this->equalTo( false ) @@ -783,7 +783,7 @@ class ezcGraphNumericAxisTest extends ezcTestCase ->expects( $this->at( 10 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 122, 190 ) ), $this->equalTo( new ezcGraphCoordinate( 118, 190 ) ), $this->equalTo( false ) @@ -792,7 +792,7 @@ class ezcGraphNumericAxisTest extends ezcTestCase ->expects( $this->at( 11 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 122, 178 ) ), $this->equalTo( new ezcGraphCoordinate( 118, 178 ) ), $this->equalTo( false ) @@ -801,7 +801,7 @@ class ezcGraphNumericAxisTest extends ezcTestCase ->expects( $this->at( 12 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 122, 166 ) ), $this->equalTo( new ezcGraphCoordinate( 118, 166 ) ), $this->equalTo( false ) @@ -812,7 +812,7 @@ class ezcGraphNumericAxisTest extends ezcTestCase ->expects( $this->at( 24 ) ) ->method( 'drawLine' ) ->with( - $this->equalTo( ezcGraphColor::fromHex( '#000000' ) ), + $this->equalTo( ezcGraphColor::fromHex( '#2E3436' ) ), $this->equalTo( new ezcGraphCoordinate( 122, 22 ) ), $this->equalTo( new ezcGraphCoordinate( 118, 22 ) ), $this->equalTo( false ) |