You are here

protected function HtmlToTextTest::stringToHtml in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/Mail/HtmlToTextTest.php \Drupal\Tests\system\Functional\Mail\HtmlToTextTest::stringToHtml()

Converts a string to its PHP source equivalent for display in test messages.

Parameters

$text: The text string to convert.

Return value

An HTML representation of the text string that, when displayed in a browser, represents the PHP source code equivalent of $text.

2 calls to HtmlToTextTest::stringToHtml()
HtmlToTextTest::assertHtmlToText in core/modules/system/tests/src/Functional/Mail/HtmlToTextTest.php
Helper function to test \Drupal\Core\Mail\MailFormatHelper::htmlToText().
HtmlToTextTest::testDrupalHtmlToTextBlockTagToNewline in core/modules/system/tests/src/Functional/Mail/HtmlToTextTest.php
Test that text separated by block-level tags in HTML get separated by (at least) a newline in the plaintext version.

File

core/modules/system/tests/src/Functional/Mail/HtmlToTextTest.php, line 32

Class

HtmlToTextTest
Tests for \Drupal\Core\Mail\MailFormatHelper::htmlToText().

Namespace

Drupal\Tests\system\Functional\Mail

Code

protected function stringToHtml($text) {
  return '"' . str_replace([
    "\n",
    ' ',
  ], [
    '\\n',
    ' ',
  ], Html::escape($text)) . '"';
}