| 7 image.test | ImageToolkitUnitTest::testLoad() |
| 8 image.test | ImageToolkitUnitTest::testLoad() |
Test the image_load() function.
File
- modules/
simpletest/ tests/ image.test, line 95 - Tests for core image handling API.
Code
function testLoad() {
$image = image_load($this->file, $this->toolkit);
$this->assertTrue(is_object($image), t('Returned an object.'));
$this->assertEqual($this->toolkit, $image->toolkit, t('Image had toolkit set.'));
$this->assertToolkitOperationsCalled(array('load', 'get_info'));
}
Login or register to post comments