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()
- 8.9.x 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()
Tests that trailing whitespace is removed before newlines.
See also
\Drupal\Core\Mail\MailFormatHelper::wrapMail()
File
-
core/
modules/ system/ tests/ src/ Unit/ Mail/ HtmlToTextTest.php, line 359
Class
Namespace
Drupal\Tests\system\Unit\MailCode
public function testRemoveTrailingWhitespace() : void {
$text = "Hi there! \nEarth";
$mail_lines = explode("\n", MailFormatHelper::wrapMail($text));
$this->assertNotEquals(" ", 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.