You are here

public function NumberFieldRdfaTest::testIntegerFormatter in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/rdf/src/Tests/Field/NumberFieldRdfaTest.php \Drupal\rdf\Tests\Field\NumberFieldRdfaTest::testIntegerFormatter()

Tests the integer formatter.

File

core/modules/rdf/src/Tests/Field/NumberFieldRdfaTest.php, line 19
Contains \Drupal\rdf\Tests\Field\NumberFieldRdfaTest.

Class

NumberFieldRdfaTest
Tests RDFa output by number field formatters.

Namespace

Drupal\rdf\Tests\Field

Code

public function testIntegerFormatter() {
  $this->fieldType = 'integer';
  $testValue = 3;
  $this
    ->createTestField();
  $this
    ->createTestEntity($testValue);
  $this
    ->assertFormatterRdfa(array(
    'type' => 'number_integer',
  ), 'http://schema.org/baseSalary', array(
    'value' => $testValue,
  ));

  // Test that the content attribute is not created.
  $result = $this
    ->xpathContent($this
    ->getRawContent(), '//div[contains(@class, "field__items") and @content]');
  $this
    ->assertFalse($result);
}