public function UnicodeTest::testTruncateBytes in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Component/Utility/UnicodeTest.php \Drupal\Tests\Component\Utility\UnicodeTest::testTruncateBytes()
- 9 core/tests/Drupal/Tests/Component/Utility/UnicodeTest.php \Drupal\Tests\Component\Utility\UnicodeTest::testTruncateBytes()
Tests multibyte truncate bytes.
@dataProvider providerTestTruncateBytes @covers ::truncateBytes
Parameters
string $text: The string to truncate.
int $max_length: The upper limit on the returned string length.
string $expected: The expected return from Unicode::truncateBytes().
File
- core/
tests/ Drupal/ Tests/ Component/ Utility/ UnicodeTest.php, line 219
Class
- UnicodeTest
- Test unicode handling features implemented in Unicode component.
Namespace
Drupal\Tests\Component\UtilityCode
public function testTruncateBytes($text, $max_length, $expected) {
$this
->assertEquals($expected, Unicode::truncateBytes($text, $max_length), 'The string was not correctly truncated.');
}