function ImageTest::testScaleWidth
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Image/ImageTest.php \Drupal\Tests\Core\Image\ImageTest::testScaleWidth()
- 8.9.x core/tests/Drupal/Tests/Core/Image/ImageTest.php \Drupal\Tests\Core\Image\ImageTest::testScaleWidth()
- 11.x 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 295
Class
- ImageTest
- Tests the image class.
Namespace
Drupal\Tests\Core\ImageCode
public function testScaleWidth() : void {
$this->getTestImageForOperation('Scale');
$this->toolkitOperation
->expects($this->once())
->method('execute')
->willReturnArgument(0);
$ret = $this->image
->scale(44, NULL, FALSE);
$this->assertEquals(50, $ret['height']);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.