public function SectionTest::testGetThirdPartySetting in Drupal 10
Same name and namespace in other branches
- 8 core/modules/layout_builder/tests/src/Unit/SectionTest.php \Drupal\Tests\layout_builder\Unit\SectionTest::testGetThirdPartySetting()
- 9 core/modules/layout_builder/tests/src/Unit/SectionTest.php \Drupal\Tests\layout_builder\Unit\SectionTest::testGetThirdPartySetting()
@covers ::getThirdPartySetting @dataProvider providerTestGetThirdPartySetting
File
- core/
modules/ layout_builder/ tests/ src/ Unit/ SectionTest.php, line 232
Class
- SectionTest
- @coversDefaultClass \Drupal\layout_builder\Section @group layout_builder
Namespace
Drupal\Tests\layout_builder\UnitCode
public function testGetThirdPartySetting($provider, $key, $expected, $default = FALSE) {
if ($default) {
$this
->assertSame($expected, $this->section
->getThirdPartySetting($provider, $key, $default));
}
else {
$this
->assertSame($expected, $this->section
->getThirdPartySetting($provider, $key));
}
}