function DateTimeFieldRdfaTest::setUp
Same name in other branches
- 8.9.x core/modules/rdf/tests/src/Kernel/Field/DateTimeFieldRdfaTest.php \Drupal\Tests\rdf\Kernel\Field\DateTimeFieldRdfaTest::setUp()
Overrides FieldKernelTestBase::setUp
File
-
core/
modules/ rdf/ tests/ src/ Kernel/ Field/ DateTimeFieldRdfaTest.php, line 35
Class
- DateTimeFieldRdfaTest
- Tests RDFa output by datetime field formatters.
Namespace
Drupal\Tests\rdf\Kernel\FieldCode
protected function setUp() : void {
parent::setUp();
$this->createTestField();
// Add the mapping.
$mapping = rdf_get_mapping('entity_test', 'entity_test');
$mapping->setFieldMapping($this->fieldName, [
'properties' => [
'schema:dateCreated',
],
])
->save();
// Set up test entity.
$this->entity = EntityTest::create([]);
$this->entity->{$this->fieldName}->value = $this->testValue;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.