You are here

public function TelephoneLinkClassFormatterTest::testClassFormatter in Element Class Formatter 8

File

tests/src/Functional/TelephoneLinkClassFormatterTest.php, line 19

Class

TelephoneLinkClassFormatterTest
Functional tests for the mailto link with class formatter.

Namespace

Drupal\Tests\element_class_formatter\Functional

Code

public function testClassFormatter() {
  $field_config = $this
    ->createEntityField('telephone_link_class', 'telephone', [
    'class' => self::TEST_CLASS,
  ]);
  $entity = EntityTest::create([
    $field_config
      ->getName() => [
      [
        'value' => '1800888888',
      ],
    ],
  ]);
  $entity
    ->save();
  $this
    ->drupalGet($entity
    ->toUrl());
  $assert_session = $this
    ->assertSession();
  $assert_session
    ->elementExists('css', 'a.' . self::TEST_CLASS);
}