function ImageEffectsUnitTest::testResizeEffect
Test the image_resize_effect() function.
File
-
modules/
image/ image.test, line 415
Class
- ImageEffectsUnitTest
- Use the image_test.module's mock toolkit to ensure that the effects are properly passing parameters to the image toolkit.
Code
function testResizeEffect() {
$this->assertTrue(image_resize_effect($this->image, array(
'width' => 1,
'height' => 2,
)), 'Function returned the expected value.');
$this->assertToolkitOperationsCalled(array(
'resize',
));
// Check the parameters.
$calls = image_test_get_all_calls();
$this->assertEqual($calls['resize'][0][1], 1, 'Width was passed correctly');
$this->assertEqual($calls['resize'][0][2], 2, 'Height was passed correctly');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.