function FieldInputValueNormalizerTraitTest::testScalarWithNoMainProperty
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Field/FieldInputValueNormalizerTraitTest.php \Drupal\Tests\Core\Field\FieldInputValueNormalizerTraitTest::testScalarWithNoMainProperty()
- 10 core/tests/Drupal/Tests/Core/Field/FieldInputValueNormalizerTraitTest.php \Drupal\Tests\Core\Field\FieldInputValueNormalizerTraitTest::testScalarWithNoMainProperty()
- 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 \Drupal\Core\Field\FieldInputValueNormalizerTrait @group Field
Namespace
Drupal\Tests\Core\FieldCode
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.