function DependencyTest::testIsCompatible
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Extension/DependencyTest.php \Drupal\Tests\Core\Extension\DependencyTest::testIsCompatible()
- 8.9.x core/tests/Drupal/Tests/Core/Extension/DependencyTest.php \Drupal\Tests\Core\Extension\DependencyTest::testIsCompatible()
- 10 core/tests/Drupal/Tests/Core/Extension/DependencyTest.php \Drupal\Tests\Core\Extension\DependencyTest::testIsCompatible()
@covers ::isCompatible
File
-
core/
tests/ Drupal/ Tests/ Core/ Extension/ DependencyTest.php, line 43
Class
- DependencyTest
- @coversDefaultClass \Drupal\Core\Extension\Dependency @group Extension
Namespace
Drupal\Tests\Core\ExtensionCode
public function testIsCompatible() : void {
$dependency = new Dependency('paragraphs_demo', 'paragraphs', '>8.x-1.1');
$this->assertFalse($dependency->isCompatible('1.1'));
$this->assertTrue($dependency->isCompatible('1.2'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.