function HtmlToTextTest::testRemoveTrailingWhitespace
Same name in other branches
- 9 core/modules/system/tests/src/Functional/Mail/HtmlToTextTest.php \Drupal\Tests\system\Functional\Mail\HtmlToTextTest::testRemoveTrailingWhitespace()
- 10 core/modules/system/tests/src/Unit/Mail/HtmlToTextTest.php \Drupal\Tests\system\Unit\Mail\HtmlToTextTest::testRemoveTrailingWhitespace()
- 11.x core/modules/system/tests/src/Unit/Mail/HtmlToTextTest.php \Drupal\Tests\system\Unit\Mail\HtmlToTextTest::testRemoveTrailingWhitespace()
Tests that trailing whitespace is removed before newlines.
See also
\Drupal\Core\Mail\MailFormatHelper::wrapMail()
File
-
core/
modules/ system/ tests/ src/ Functional/ Mail/ HtmlToTextTest.php, line 370
Class
Namespace
Drupal\Tests\system\Functional\MailCode
public function testRemoveTrailingWhitespace() {
$text = "Hi there! \nHerp Derp";
$mail_lines = explode("\n", MailFormatHelper::wrapMail($text));
$this->assertNotEqual(" ", substr($mail_lines[0], -1), 'Trailing whitespace removed.');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.