Changeset 50491 for trunk/tests/phpunit/tests/image/editorGd.php
- Timestamp:
- 03/04/2021 10:11:38 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/image/editorGd.php
r50449 r50491 90 90 $resized = $gd_image_editor->multi_resize( $sizes_array ); 91 91 92 # First, check to see if returned array is as expected92 // First, check to see if returned array is as expected. 93 93 $expected_array = array( 94 94 array( … … 218 218 */ 219 219 array( 220 'width' => 9999, # Arbitrary High Value220 'width' => 9999, // Arbitrary high value. 221 221 'height' => 20, 222 222 'crop' => false, … … 229 229 array( 230 230 'width' => 45, 231 'height' => 9999, # Arbitrary High Value231 'height' => 9999, // Arbitrary high value. 232 232 'crop' => true, 233 233 ), … … 272 272 */ 273 273 array( 274 'width' => -9999, # Arbitrary Negative Value274 'width' => -9999, // Arbitrary negative value. 275 275 'height' => 70, 276 276 ), … … 282 282 array( 283 283 'width' => 200, 284 'height' => -9999, # Arbitrary Negative Value284 'height' => -9999, // Arbitrary negative value. 285 285 ), 286 286 );
Note: See TracChangeset
for help on using the changeset viewer.