Changeset 57267 for trunk/tests/phpunit/tests/image/meta.php
- Timestamp:
- 01/10/2024 09:57:50 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/image/meta.php
r52269 r57267 52 52 $this->assertSame( '', $out['credit'], 'Credit value not the same' ); 53 53 $this->assertSame( 'NIKON D70', $out['camera'], 'Camera value not the same' ); 54 $this->assertSame( ' ', $out['caption'], 'Caption value not the same' );54 $this->assertSame( 'Copyright Alex Shiels', $out['caption'], 'Caption value not the same' ); 55 55 $this->assertEquals( strtotime( '2007-06-17 21:18:00' ), $out['created_timestamp'], 'Timestamp value not equivalent' ); 56 56 $this->assertSame( '', $out['copyright'], 'Copyright value not the same' ); … … 58 58 $this->assertEquals( 0, $out['iso'], 'Iso value not equivalent' ); // Interesting - a Nikon bug? 59 59 $this->assertEquals( 1 / 500, $out['shutter_speed'], 'Shutter speed value not equivalent' ); 60 $this->assertSame( ' ', $out['title'], 'Title value not the same' );60 $this->assertSame( 'Copyright Alex Shiels', $out['title'], 'Title value not the same' ); 61 61 // $this->assertSame( array( 'Flowers' ), $out['keywords'] ); 62 62 }
Note: See TracChangeset
for help on using the changeset viewer.