You are here

public function ImageTest::testCropHeight in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Image/ImageTest.php \Drupal\Tests\Core\Image\ImageTest::testCropHeight()
  2. 9 core/tests/Drupal/Tests/Core/Image/ImageTest.php \Drupal\Tests\Core\Image\ImageTest::testCropHeight()

Tests \Drupal\Core\Image\Image::crop().

File

core/tests/Drupal/Tests/Core/Image/ImageTest.php, line 388

Class

ImageTest
Tests the image class.

Namespace

Drupal\Tests\Core\Image

Code

public function testCropHeight() {
  $this
    ->getTestImageForOperation('Crop');
  $this->toolkitOperation
    ->expects($this
    ->once())
    ->method('execute')
    ->will($this
    ->returnArgument(0));

  // Cropping with height only should preserve the aspect ratio.
  $ret = $this->image
    ->crop(0, 0, NULL, 50);
  $this
    ->assertEquals(44, $ret['width']);
}