function LayoutBuilderEntityViewDisplayValidationTest::testImmutableProperties

Same name and namespace in other branches
  1. 11.x core/modules/layout_builder/tests/src/Kernel/LayoutBuilderEntityViewDisplayValidationTest.php \Drupal\Tests\layout_builder\Kernel\LayoutBuilderEntityViewDisplayValidationTest::testImmutableProperties()

Tests that immutable properties cannot be changed.

Parameters

mixed[] $valid_values: (optional) The values to set for the immutable properties, keyed by name. This should be used if the immutable properties can only accept certain values, e.g. valid plugin IDs.

Overrides ConfigEntityValidationTestBase::testImmutableProperties

File

core/modules/layout_builder/tests/src/Kernel/LayoutBuilderEntityViewDisplayValidationTest.php, line 73

Class

LayoutBuilderEntityViewDisplayValidationTest
Tests validation of Layout Builder's entity_view_display entities.

Namespace

Drupal\Tests\layout_builder\Kernel

Code

public function testImmutableProperties(array $valid_values = []) : void {
    parent::testImmutableProperties([
        'targetEntityType' => 'entity_test_with_bundle',
        'bundle' => 'two',
    ]);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.