public function ImageTest::testScaleWidth in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Image/ImageTest.php \Drupal\Tests\Core\Image\ImageTest::testScaleWidth()
- 9 core/tests/Drupal/Tests/Core/Image/ImageTest.php \Drupal\Tests\Core\Image\ImageTest::testScaleWidth()
Tests \Drupal\Core\Image\Image::scale().
File
- core/
tests/ Drupal/ Tests/ Core/ Image/ ImageTest.php, line 291
Class
- ImageTest
- Tests the image class.
Namespace
Drupal\Tests\Core\ImageCode
public function testScaleWidth() {
$this
->getTestImageForOperation('Scale');
$this->toolkitOperation
->expects($this
->once())
->method('execute')
->will($this
->returnArgument(0));
$ret = $this->image
->scale(44, NULL, FALSE);
$this
->assertEquals(50, $ret['height']);
}