function ToolkitTest::testLoad

Test the image_load() function.

File

drupal/core/modules/system/lib/Drupal/system/Tests/Image/ToolkitTest.php, line 39
Definition of Drupal\system\Tests\Image\ToolkitTest.

Class

ToolkitTest
Test that the functions in image.inc correctly pass data to the toolkit.

Namespace

Drupal\system\Tests\Image

Code

function testLoad() {
  $image = image_load($this->file, $this->toolkit);
  $this
    ->assertTrue(is_object($image), 'Returned an object.');
  $this
    ->assertEqual($this->toolkit, $image->toolkit, t('Image had toolkit set.'));
  $this
    ->assertToolkitOperationsCalled(array(
    'load',
    'get_info',
  ));
}