function IconFinderTest::testGetFilesFromPathInvalidExtensionWarning

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Theme/Icon/IconFinderTest.php \Drupal\Tests\Core\Theme\Icon\IconFinderTest::testGetFilesFromPathInvalidExtensionWarning()

Test the IconFinder::getFilesFromPath method with warning.

File

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

Class

IconFinderTest
Tests Drupal\Core\Theme\Icon\IconFinder.

Namespace

Drupal\Tests\Core\Theme\Icon

Code

public function testGetFilesFromPathInvalidExtensionWarning() : void {
  $method = new \ReflectionMethod(IconFinder::class, 'getFilesFromPath');
  $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.