You are here

public function OptionsFormattersTest::testFormatter in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/options/src/Tests/OptionsFormattersTest.php \Drupal\options\Tests\OptionsFormattersTest::testFormatter()

Tests the formatters.

File

core/modules/options/src/Tests/OptionsFormattersTest.php, line 29
Contains \Drupal\options\Tests\OptionsFormattersTest.

Class

OptionsFormattersTest
Tests the Options field type formatters.

Namespace

Drupal\options\Tests

Code

public function testFormatter() {
  $entity = entity_create('entity_test');
  $entity->{$this->fieldName}->value = 1;
  $items = $entity
    ->get($this->fieldName);
  $build = $items
    ->view();
  $this
    ->assertEqual($build['#formatter'], 'list_default', 'Ensure to fall back to the default formatter.');
  $this
    ->assertEqual($build[0]['#markup'], 'One');
  $build = $items
    ->view(array(
    'type' => 'list_key',
  ));
  $this
    ->assertEqual($build['#formatter'], 'list_key', 'The chosen formatter is used.');
  $this
    ->assertEqual((string) $build[0]['#markup'], 1);
}