function EntityFormModeValidationTest::testImmutableProperties

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/KernelTests/Core/Entity/EntityFormModeValidationTest.php \Drupal\KernelTests\Core\Entity\EntityFormModeValidationTest::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/tests/Drupal/KernelTests/Core/Entity/EntityFormModeValidationTest.php, line 42

Class

EntityFormModeValidationTest
Tests validation of entity_form_mode entities.

Namespace

Drupal\KernelTests\Core\Entity

Code

public function testImmutableProperties(array $valid_values = []) : void {
    $valid_values['id'] = 'user.test_changed';
    parent::testImmutableProperties($valid_values);
}

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