protected function ComposerIntegrationTest::getPaths in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/ComposerIntegrationTest.php \Drupal\Tests\ComposerIntegrationTest::getPaths()
Gets the paths to the folders that contain the Composer integration.
Return value
string[] The paths.
1 call to ComposerIntegrationTest::getPaths()
- ComposerIntegrationTest::testComposerJson in core/
tests/ Drupal/ Tests/ ComposerIntegrationTest.php - Tests composer.json.
File
- core/
tests/ Drupal/ Tests/ ComposerIntegrationTest.php, line 48 - Contains \Drupal\Tests\ComposerIntegrationTest.
Class
- ComposerIntegrationTest
- Tests Composer integration.
Namespace
Drupal\TestsCode
protected function getPaths() {
return [
$this->root,
$this->root . '/core',
$this->root . '/core/lib/Drupal/Component/Gettext',
$this->root . '/core/lib/Drupal/Component/Plugin',
$this->root . '/core/lib/Drupal/Component/ProxyBuilder',
$this->root . '/core/lib/Drupal/Component/Utility',
];
}