function NumberFieldRdfaTest::testFloatFormatterWithScale

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

Tests the float formatter with a scale. Scale is not exercised.

File

core/modules/rdf/tests/src/Kernel/Field/NumberFieldRdfaTest.php, line 105

Class

NumberFieldRdfaTest
Tests RDFa output by number field formatters.

Namespace

Drupal\Tests\rdf\Kernel\Field

Code

public function testFloatFormatterWithScale() {
    $this->fieldType = 'float';
    $formatter = [
        'type' => 'number_decimal',
        'settings' => [
            'scale' => 5,
        ],
    ];
    $testValue = 3.33;
    $this->createTestField();
    $this->createTestEntity($testValue);
    $this->assertFormatterRdfa($formatter, 'http://schema.org/baseSalary', [
        'value' => $testValue,
    ]);
    // Test that the content attribute is not created.
    $result = $this->xpathContent($this->getRawContent(), '//div[contains(@class, "field__items") and @content]');
    $this->assertEmpty($result);
}

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