Changeset 48937 for trunk/tests/phpunit/tests/image/base.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/image/base.php
r46586 r48937 49 49 $colors = imagecolorsforindex( $im, $rgb ); 50 50 51 $this->assert Equals( $alpha, $colors['alpha'] );51 $this->assertSame( $alpha, $colors['alpha'] ); 52 52 } 53 53 … … 63 63 $pixel = $im->getImagePixelColor( $point[0], $point[1] ); 64 64 $color = $pixel->getColorValue( imagick::COLOR_ALPHA ); 65 $this->assert Equals( $expected, $color );65 $this->assertSame( $expected, $color ); 66 66 } 67 67 … … 86 86 } 87 87 88 $this->assert Equals( $width, $detected_width );89 $this->assert Equals( $height, $detected_height );88 $this->assertSame( $width, $detected_width ); 89 $this->assertSame( $height, $detected_height ); 90 90 } 91 91 }
Note: See TracChangeset
for help on using the changeset viewer.