function FieldInputValueNormalizerTraitTest::testScalarWithNoMainProperty

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Field/FieldInputValueNormalizerTraitTest.php \Drupal\Tests\Core\Field\FieldInputValueNormalizerTraitTest::testScalarWithNoMainProperty()
  2. 10 core/tests/Drupal/Tests/Core/Field/FieldInputValueNormalizerTraitTest.php \Drupal\Tests\Core\Field\FieldInputValueNormalizerTraitTest::testScalarWithNoMainProperty()
  3. 11.x core/tests/Drupal/Tests/Core/Field/FieldInputValueNormalizerTraitTest.php \Drupal\Tests\Core\Field\FieldInputValueNormalizerTraitTest::testScalarWithNoMainProperty()

@covers ::normalizeValue

File

core/tests/Drupal/Tests/Core/Field/FieldInputValueNormalizerTraitTest.php, line 86

Class

FieldInputValueNormalizerTraitTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Field%21FieldInputValueNormalizerTrait.php/trait/FieldInputValueNormalizerTrait/9" title="A trait used to assist in the normalization of raw input field values." class="local">\Drupal\Core\Field\FieldInputValueNormalizerTrait</a> @group Field

Namespace

Drupal\Tests\Core\Field

Code

public function testScalarWithNoMainProperty() {
    $this->expectException(\InvalidArgumentException::class);
    $this->expectExceptionMessage('A main property is required when normalizing scalar field values.');
    $value = 'foo';
    $this->normalizeValue($value, NULL);
}

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