function TelephoneFieldRdfaTest::setUp
Same name in other branches
- 9 core/modules/rdf/tests/src/Kernel/Field/TelephoneFieldRdfaTest.php \Drupal\Tests\rdf\Kernel\Field\TelephoneFieldRdfaTest::setUp()
Overrides FieldRdfaTestBase::setUp
File
-
core/
modules/ rdf/ tests/ src/ Kernel/ Field/ TelephoneFieldRdfaTest.php, line 31
Class
- TelephoneFieldRdfaTest
- Tests RDFa output by telephone 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:telephone',
],
])
->save();
// Set up test values.
$this->testValue = '555-555-5555';
$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.