You are here

public function FormattableMarkupTest::testToString in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Component/Render/FormattableMarkupTest.php \Drupal\Tests\Component\Render\FormattableMarkupTest::testToString()

@covers ::__toString @covers ::jsonSerialize

File

core/tests/Drupal/Tests/Component/Render/FormattableMarkupTest.php, line 25
Contains \Drupal\Tests\Component\Render\FormattableMarkupTest.

Class

FormattableMarkupTest
Tests the TranslatableMarkup class.

Namespace

Drupal\Tests\Component\Render

Code

public function testToString() {
  $string = 'Can I please have a @replacement';
  $formattable_string = new FormattableMarkup($string, [
    '@replacement' => 'kitten',
  ]);
  $text = (string) $formattable_string;
  $this
    ->assertEquals('Can I please have a kitten', $text);
  $text = $formattable_string
    ->jsonSerialize();
  $this
    ->assertEquals('Can I please have a kitten', $text);
}