function TextFieldRdfaTest::setUp

Same name and namespace in other branches
  1. 8.9.x core/modules/rdf/tests/src/Kernel/Field/TextFieldRdfaTest.php \Drupal\Tests\rdf\Kernel\Field\TextFieldRdfaTest::setUp()

Overrides FieldKernelTestBase::setUp

File

core/modules/rdf/tests/src/Kernel/Field/TextFieldRdfaTest.php, line 42

Class

TextFieldRdfaTest
Tests RDFa output by text field formatters.

Namespace

Drupal\Tests\rdf\Kernel\Field

Code

protected function setUp() : void {
    parent::setUp();
    $this->installConfig([
        'filter',
    ]);
    $this->createTestField();
    // Add the mapping.
    $mapping = rdf_get_mapping('entity_test', 'entity_test');
    $mapping->setFieldMapping($this->fieldName, [
        'properties' => [
            'schema:text',
        ],
    ])
        ->save();
    // Set up test entity.
    $this->entity = EntityTest::create();
    $this->entity->{$this->fieldName}->value = $this->testValue;
    $this->entity->{$this->fieldName}->summary = $this->testSummary;
}

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