public function ModuleHandlerTest::testLoadInclude in Drupal 8
@covers ::loadInclude
Note we load code, so isolate the test.
@runInSeparateProcess @preserveGlobalState disabled
File
- core/
tests/ Drupal/ Tests/ Core/ Extension/ ModuleHandlerTest.php, line 287
Class
- ModuleHandlerTest
- @coversDefaultClass \Drupal\Core\Extension\ModuleHandler @runTestsInSeparateProcesses
Namespace
Drupal\Tests\Core\ExtensionCode
public function testLoadInclude() {
$module_handler = $this
->getModuleHandler();
// Include exists.
$this
->assertEquals(__DIR__ . '/modules/module_handler_test/hook_include.inc', $module_handler
->loadInclude('module_handler_test', 'inc', 'hook_include'));
$this
->assertTrue(function_exists('module_handler_test_hook_include'));
// Include doesn't exist.
$this
->assertFalse($module_handler
->loadInclude('module_handler_test', 'install'));
}