function ModuleHandlerTest::testLoadAllIncludes
@covers ::loadAllIncludes
      
    
File
- 
              core/
tests/ Drupal/ Tests/ Core/ Extension/ ModuleHandlerTest.php, line 261  
Class
- ModuleHandlerTest
 - @coversDefaultClass \Drupal\Core\Extension\ModuleHandler[[api-linebreak]] @runTestsInSeparateProcesses
 
Namespace
Drupal\Tests\Core\ExtensionCode
public function testLoadAllIncludes() : void {
  $this->assertTrue(TRUE);
  $module_handler = $this->getMockBuilder(ModuleHandler::class)
    ->setConstructorArgs([
    $this->root,
    [
      'module_handler_test' => [
        'type' => 'module',
        'pathname' => 'core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test/module_handler_test.info.yml',
        'filename' => 'module_handler_test.module',
      ],
    ],
    $this->cacheBackend,
  ])
    ->onlyMethods([
    'loadInclude',
  ])
    ->getMock();
  // Ensure we reset implementations when settings a new modules list.
  $module_handler->expects($this->once())
    ->method('loadInclude');
  $module_handler->loadAllIncludes('hook');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.