You are here

public function SectionTest::testSetThirdPartySetting in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/layout_builder/tests/src/Unit/SectionTest.php \Drupal\Tests\layout_builder\Unit\SectionTest::testSetThirdPartySetting()

@covers ::setThirdPartySetting @dataProvider providerTestSetThirdPartySetting

File

core/modules/layout_builder/tests/src/Unit/SectionTest.php, line 277

Class

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

Namespace

Drupal\Tests\layout_builder\Unit

Code

public function testSetThirdPartySetting($provider, $key, $value, $expected) {
  $this->section
    ->setThirdPartySetting($provider, $key, $value);
  $this
    ->assertSame($expected, $this->section
    ->getThirdPartySettings($provider));
}