function RdfaAttributesTest::testDatatype

Same name and namespace in other branches
  1. 9 core/modules/rdf/tests/src/Kernel/RdfaAttributesTest.php \Drupal\Tests\rdf\Kernel\RdfaAttributesTest::testDatatype()

Test attribute creation for mappings which use 'datatype'.

File

core/modules/rdf/tests/src/Kernel/RdfaAttributesTest.php, line 36

Class

RdfaAttributesTest
Tests RDFa attribute generation from RDF mapping.

Namespace

Drupal\Tests\rdf\Kernel

Code

public function testDatatype() {
    $properties = [
        'foo:bar1',
    ];
    $datatype = 'foo:bar1type';
    $mapping = [
        'datatype' => $datatype,
        'properties' => $properties,
    ];
    $expected_attributes = [
        'datatype' => $datatype,
        'property' => $properties,
    ];
    $this->_testAttributes($expected_attributes, $mapping);
}

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