public function RdfaAttributesTest::testProperty in Drupal 10
Same name and namespace in other branches
- 8 core/modules/rdf/tests/src/Kernel/RdfaAttributesTest.php \Drupal\Tests\rdf\Kernel\RdfaAttributesTest::testProperty()
- 9 core/modules/rdf/tests/src/Kernel/RdfaAttributesTest.php \Drupal\Tests\rdf\Kernel\RdfaAttributesTest::testProperty()
Tests attribute creation for mappings which use 'property'.
File
- core/
modules/ rdf/ tests/ src/ Kernel/ RdfaAttributesTest.php, line 24
Class
- RdfaAttributesTest
- Tests RDFa attribute generation from RDF mapping.
Namespace
Drupal\Tests\rdf\KernelCode
public function testProperty() {
$properties = [
'dc:title',
];
$mapping = [
'properties' => $properties,
];
$expected_attributes = [
'property' => $properties,
];
$this
->_testAttributes($expected_attributes, $mapping);
}