You are here

public function EmailLinkClassFormatterTest::testClassFormatter in Element Class Formatter 8

File

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

Class

EmailLinkClassFormatterTest
Functional tests for the mailto link with class formatter.

Namespace

Drupal\Tests\element_class_formatter\Functional

Code

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