You are here

public function SectionTest::testGetThirdPartySetting in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/tests/src/Unit/SectionTest.php \Drupal\Tests\layout_builder\Unit\SectionTest::testGetThirdPartySetting()
  2. 10 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 226

Class

SectionTest
@coversDefaultClass \Drupal\layout_builder\Section @group layout_builder

Namespace

Drupal\Tests\layout_builder\Unit

Code

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));
  }
}