function ImageDeprecationTest::testImageFilterKeywordDeprecation

Tests deprecation of image_filter_keyword.

File

core/modules/image/tests/src/Unit/ImageDeprecationTest.php, line 18

Class

ImageDeprecationTest
@group Image @group legacy

Namespace

Drupal\Tests\image\Unit

Code

public function testImageFilterKeywordDeprecation() : void {
    include_once __DIR__ . '/../../../image.module';
    $this->expectDeprecation('image_filter_keyword() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. Use \\Drupal\\Component\\Utility\\Image::getKeywordOffset() instead. See https://www.drupal.org/node/3268441');
    $this->assertSame('miss', image_filter_keyword('miss', 0, 0));
}

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