protected function TestLibraryDiscoveryParser::drupalGetPath 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\TestLibraryDiscoveryParser::drupalGetPath()
Wraps drupal_get_path().
Overrides LibraryDiscoveryParser::drupalGetPath
File
- core/
tests/ Drupal/ Tests/ Core/ Asset/ LibraryDiscoveryParserTest.php, line 547 - Contains \Drupal\Tests\Core\Asset\LibraryDiscoveryParserTest.
Class
- TestLibraryDiscoveryParser
- Wraps the tested class to mock the external dependencies.
Namespace
Drupal\Tests\Core\AssetCode
protected function drupalGetPath($type, $name) {
return isset($this->paths[$type][$name]) ? $this->paths[$type][$name] : NULL;
}