function SchemaCompatibilityCheckerTest::testIsCompatible
Same name in this branch
- 11.x core/tests/Drupal/Tests/Core/Theme/Component/SchemaCompatibilityCheckerTest.php \Drupal\Tests\Core\Theme\Component\SchemaCompatibilityCheckerTest::testIsCompatible()
Same name in other branches
- 10 core/modules/sdc/tests/src/Unit/SchemaCompatibilityCheckerTest.php \Drupal\Tests\sdc\Unit\SchemaCompatibilityCheckerTest::testIsCompatible()
- 10 core/tests/Drupal/Tests/Core/Theme/Component/SchemaCompatibilityCheckerTest.php \Drupal\Tests\Core\Theme\Component\SchemaCompatibilityCheckerTest::testIsCompatible()
@covers ::isCompatible @dataProvider dataProviderIsCompatible
File
-
core/
modules/ sdc/ tests/ src/ Unit/ SchemaCompatibilityCheckerTest.php, line 36
Class
- SchemaCompatibilityCheckerTest
- @coversDefaultClass \Drupal\sdc\Component\SchemaCompatibilityChecker @group sdc
Namespace
Drupal\Tests\sdc\UnitCode
public function testIsCompatible(array $first_schema, array $second_schema, bool $expected) : void {
try {
$this->checker
->isCompatible($first_schema, $second_schema);
$is_compatible = TRUE;
} catch (IncompatibleComponentSchema $e) {
$is_compatible = FALSE;
}
$this->assertSame($expected, $is_compatible);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.