protected function LinkFieldRdfaTest::setUp in Drupal 8
Same name and namespace in other branches
- 9 core/modules/rdf/tests/src/Kernel/Field/LinkFieldRdfaTest.php \Drupal\Tests\rdf\Kernel\Field\LinkFieldRdfaTest::setUp()
Set the default field storage backend for fields created during tests.
Overrides FieldRdfaTestBase::setUp
File
- core/
modules/ rdf/ tests/ src/ Kernel/ Field/ LinkFieldRdfaTest.php, line 27
Class
- LinkFieldRdfaTest
- Tests the placement of RDFa in link field formatters.
Namespace
Drupal\Tests\rdf\Kernel\FieldCode
protected function setUp() {
parent::setUp();
$this
->createTestField();
// Add the mapping.
$mapping = rdf_get_mapping('entity_test', 'entity_test');
$mapping
->setFieldMapping($this->fieldName, [
'properties' => [
'schema:link',
],
])
->save();
}