File
- drupal/core/modules/system/lib/Drupal/system/Tests/System/UnicodeUnitTest.php, line 121
- Definition of Drupal\system\Tests\System\UnicodeUnitTest.
Class
- UnicodeUnitTest
- Test unicode handling features implemented in unicode.inc.
Namespace
Drupal\system\Tests\System
Code
function helperTestStrLen() {
$testcase = array(
'tHe QUIcK bRoWn' => 15,
'ÜBER-åwesome' => 12,
);
foreach ($testcase as $input => $output) {
$this
->assertEqual(drupal_strlen($input), $output, format_string('%input length is %output', array(
'%input' => $input,
'%output' => $output,
)));
}
}