public function LibraryDiscoveryTest::testGetLibrariesByExtension in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryTest::testGetLibrariesByExtension()
@covers ::getLibrariesByExtension
File
- core/
tests/ Drupal/ Tests/ Core/ Asset/ LibraryDiscoveryTest.php, line 76 - Contains \Drupal\Tests\Core\Asset\LibraryDiscoveryTest.
Class
- LibraryDiscoveryTest
- @coversDefaultClass \Drupal\Core\Asset\LibraryDiscovery @group Asset
Namespace
Drupal\Tests\Core\AssetCode
public function testGetLibrariesByExtension() {
$this->libraryDiscoveryCollector
->expects($this
->once())
->method('get')
->with('test')
->willReturn($this->libraryData);
$this->libraryDiscovery
->getLibrariesbyExtension('test');
// Verify that subsequent calls don't trigger hook_library_info_alter()
// and hook_js_settings_alter() invocations, nor do they talk to the
// collector again. This ensures that the alterations made by
// hook_library_info_alter() and hook_js_settings_alter() implementations
// are statically cached, as desired.
$this->libraryDiscovery
->getLibraryByName('test', 'test_1');
$this->libraryDiscovery
->getLibrariesbyExtension('test');
}