public function ModuleHandlerTest::testAddProfile in Drupal 8
Test adding a profile.
@covers ::addProfile @covers ::add
File
- core/
tests/ Drupal/ Tests/ Core/ Extension/ ModuleHandlerTest.php, line 227
Class
- ModuleHandlerTest
- @coversDefaultClass \Drupal\Core\Extension\ModuleHandler @runTestsInSeparateProcesses
Namespace
Drupal\Tests\Core\ExtensionCode
public function testAddProfile() {
$module_handler = $this
->getMockBuilder(ModuleHandler::class)
->setConstructorArgs([
$this->root,
[],
$this->cacheBackend,
])
->setMethods([
'resetImplementations',
])
->getMock();
// Ensure we reset implementations when settings a new modules list.
$module_handler
->expects($this
->once())
->method('resetImplementations');
// @todo this should probably fail since its a module not a profile.
$module_handler
->addProfile('module_handler_test', 'core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test');
$this
->assertTrue($module_handler
->moduleExists('module_handler_test'));
}