function DependencyTest::testIncompatiblePhpVersionDependency
Same name in other branches
- 9 core/modules/system/tests/src/Functional/Module/DependencyTest.php \Drupal\Tests\system\Functional\Module\DependencyTest::testIncompatiblePhpVersionDependency()
- 8.9.x core/modules/system/tests/src/Functional/Module/DependencyTest.php \Drupal\Tests\system\Functional\Module\DependencyTest::testIncompatiblePhpVersionDependency()
- 10 core/modules/system/tests/src/Functional/Module/DependencyTest.php \Drupal\Tests\system\Functional\Module\DependencyTest::testIncompatiblePhpVersionDependency()
Tests failing PHP version requirements.
File
-
core/
modules/ system/ tests/ src/ Functional/ Module/ DependencyTest.php, line 166
Class
- DependencyTest
- Enable module without dependency enabled.
Namespace
Drupal\Tests\system\Functional\ModuleCode
public function testIncompatiblePhpVersionDependency() : void {
$this->drupalGet('admin/modules');
$this->assertSession()
->pageTextContains('This module requires PHP version 6502.* and is incompatible with PHP version ' . phpversion() . '.');
$this->assertSession()
->fieldDisabled('modules[system_incompatible_php_version_test][enable]');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.