public function ModuleConfigureRouteTest::testModuleConfigureRoutes in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/KernelTests/Core/Extension/ModuleConfigureRouteTest.php \Drupal\KernelTests\Core\Extension\ModuleConfigureRouteTest::testModuleConfigureRoutes()
Test the module configure routes exist.
@dataProvider coreModuleListDataProvider
File
- core/
tests/ Drupal/ KernelTests/ Core/ Extension/ ModuleConfigureRouteTest.php, line 49
Class
- ModuleConfigureRouteTest
- Tests the configure route for core modules.
Namespace
Drupal\KernelTests\Core\ExtensionCode
public function testModuleConfigureRoutes($module) {
$module_info = $this->moduleInfo[$module]->info;
if (!isset($module_info['configure'])) {
$this
->markTestSkipped("{$module} has no configure route");
}
$this->container
->get('module_installer')
->install([
$module,
]);
$route = $this->routeProvider
->getRouteByName($module_info['configure']);
$this
->assertNotEmpty($route, sprintf('The configure route for the "%s" module was found.', $module));
}