wordpress-develop/tests/phpunit/tests/image/resizeGd.php
John Blackbourn 3542c3b4c0 Build/Test Tools: Fix and standardise calls to the setUp() and setUpBeforeClass() methods in the test suite.
The parent methods should always be called before any test-specific functionality is set up, unless there is a specific and documented reason.

See #52625


git-svn-id: https://develop.svn.wordpress.org/trunk@50449 602fd350-edb4-49c9-b593-d223f7449a82
2021-02-27 16:54:52 +00:00

41 lines
876 B
PHP

<?php
/**
* @group image
* @group media
* @group upload
* @group resize
*/
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 setUp() {
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::setUp();
}
/**
* 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() );
}
}