function ImageTest::testScaleAndCropFails

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Image/ImageTest.php \Drupal\Tests\Core\Image\ImageTest::testScaleAndCropFails()
  2. 8.9.x core/tests/Drupal/Tests/Core/Image/ImageTest.php \Drupal\Tests\Core\Image\ImageTest::testScaleAndCropFails()
  3. 11.x core/tests/Drupal/Tests/Core/Image/ImageTest.php \Drupal\Tests\Core\Image\ImageTest::testScaleAndCropFails()

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

File

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

Class

ImageTest
Tests the image class.

Namespace

Drupal\Tests\Core\Image

Code

public function testScaleAndCropFails() : void {
  $this->getTestImageForOperation('ScaleAndCrop');
  $this->toolkitOperation
    ->expects($this->once())
    ->method('execute')
    ->willReturnArgument(0);
  $ret = $this->image
    ->scaleAndCrop(44, 40);
  $this->assertEquals(0, $ret['x']);
  $this->assertEquals(5, $ret['y']);
  $this->assertEquals(44, $ret['resize']['width']);
  $this->assertEquals(50, $ret['resize']['height']);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.