You are here

function ImageToolkitUnitTest::testRotate in SimpleTest 7

Test the image_rotate() function.

File

tests/image.test, line 155
Unit tests for the Drupal Form API.

Class

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

Code

function testRotate() {
  $this
    ->assertTrue(image_rotate($this->image, 90, 1), t('Function returned the expected value.'));
  $this
    ->assertToolkitOperationsCalled(array(
    'rotate',
  ));

  // Check the parameters.
  $calls = image_test_get_all_calls();
  $this
    ->assertEqual($calls['rotate'][0][1], 90, t('Degrees were passed correctly'));
  $this
    ->assertEqual($calls['rotate'][0][2], 1, t('Background color was passed correctly'));
}