function IconFinderTest::testGetFilesFromPathInvalidExtensionWarning

Test the IconFinder::getFilesFromPath method with warning.

File

core/tests/Drupal/Tests/Core/Theme/Icon/IconFinderTest.php, line 659

Class

IconFinderTest
@coversDefaultClass \Drupal\Core\Theme\Icon\IconFinder

Namespace

Drupal\Tests\Core\Theme\Icon

Code

public function testGetFilesFromPathInvalidExtensionWarning() : void {
    $method = new \ReflectionMethod(IconFinder::class, 'getFilesFromPath');
    $method->setAccessible(TRUE);
    $this->logger
        ->expects($this->once())
        ->method('warning');
    $method->invoke($this->iconFinder, self::TEST_ICONS_PATH . '/icons/empty/*.svg', '');
}

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