You are here

public function ImageTest::testScaleAndCropHeight 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::testScaleAndCropHeight()
  2. 9 core/tests/Drupal/Tests/Core/Image/ImageTest.php \Drupal\Tests\Core\Image\ImageTest::testScaleAndCropHeight()

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

File

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

Class

ImageTest
Tests the image class.

Namespace

Drupal\Tests\Core\Image

Code

public function testScaleAndCropHeight() {
  $this
    ->getTestImageForOperation('ScaleAndCrop');
  $this->toolkitOperation
    ->expects($this
    ->once())
    ->method('execute')
    ->will($this
    ->returnArgument(0));
  $ret = $this->image
    ->scaleAndCrop(44, 40);
  $this
    ->assertEquals(5, $ret['y']);
}