wordpress-develop/tests/phpunit/tests/image/resizeGd.php
Sergey Biryukov d790be16dc Coding Standards: Remove superfluous blank lines at the end of various classes.
Note: This is enforced by WPCS 3.0.0.

Follow-up to [56536].

Props jrf.
See #59161, #58831.

git-svn-id: https://develop.svn.wordpress.org/trunk@56547 602fd350-edb4-49c9-b593-d223f7449a82
2023-09-08 09:30:38 +00:00

42 lines
912 B
PHP

<?php
/**
* @group image
* @group media
* @group upload
* @group resize
*
* @requires function imagejpeg
*/
require_once __DIR__ . '/resize.php';
class Test_Image_Resize_GD extends WP_Tests_Image_Resize_UnitTestCase {
/**
* Use the GD image editor engine
*
* @var string
*/
public $editor_engine = 'WP_Image_Editor_GD';
public function set_up() {
require_once ABSPATH . WPINC . '/class-wp-image-editor.php';
require_once ABSPATH . WPINC . '/class-wp-image-editor-gd.php';
// This needs to come after the mock image editor class is loaded.
parent::set_up();
}
/**
* Try resizing a php file (bad image)
*
* @ticket 6821
*/
public function test_resize_bad_image() {
$image = $this->resize_helper( DIR_TESTDATA . '/export/crazy-cdata.xml', 25, 25 );
$this->assertInstanceOf( 'WP_Error', $image );
$this->assertSame( 'invalid_image', $image->get_error_code() );
}
}