class UpdaterTest extends KernelTestBase
{ /**
* Tests project and child project showing correct title.
*
* @see https://drupal.org/node/2409515
*/
public function testGetProjectTitleWithChild() { // Get the project title from its directory. If it can't find the title
// it will choose the first project title in the directory.
$directory =
$this->root . '/core/modules/system/tests/modules/module_handler_test_multiple';
$title = Updater::
getProjectTitle($directory);
$this->
assertEquals('module handler test multiple',
$title);
}}