public function LibraryDiscoveryParserTest::testLibraryThirdPartyWithMissingLicense in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryParserTest.php \Drupal\Tests\Core\Asset\LibraryDiscoveryParserTest::testLibraryThirdPartyWithMissingLicense()
Tests that an exception is thrown when license is missing when 3rd party.
@expectedException \Drupal\Core\Asset\Exception\LibraryDefinitionMissingLicenseException @expectedExceptionMessage Missing license information in library definition for definition 'no-license-info-but-remote' extension 'licenses_missing_information': it has a remote, but no license.
@covers ::buildByExtension
File
- core/
tests/ Drupal/ Tests/ Core/ Asset/ LibraryDiscoveryParserTest.php, line 439 - Contains \Drupal\Tests\Core\Asset\LibraryDiscoveryParserTest.
Class
- LibraryDiscoveryParserTest
- @coversDefaultClass \Drupal\Core\Asset\LibraryDiscoveryParser @group Asset
Namespace
Drupal\Tests\Core\AssetCode
public function testLibraryThirdPartyWithMissingLicense() {
$this->moduleHandler
->expects($this
->atLeastOnce())
->method('moduleExists')
->with('licenses_missing_information')
->will($this
->returnValue(TRUE));
$path = __DIR__ . '/library_test_files';
$path = substr($path, strlen($this->root) + 1);
$this->libraryDiscoveryParser
->setPaths('module', 'licenses_missing_information', $path);
$this->libraryDiscoveryParser
->buildByExtension('licenses_missing_information');
}