function UnicodeUnitTest::helperTestStrLen in SimpleTest 7
2 calls to UnicodeUnitTest::helperTestStrLen()
- UnicodeUnitTest::testEmulatedUnicode in tests/
unicode.test - Test emulated unicode features.
- UnicodeUnitTest::testMbStringUnicode in tests/
unicode.test - Test full unicode features implemented using the mbstring extension.
File
- tests/
unicode.test, line 115 - Various unicode handling tests.
Class
- UnicodeUnitTest
- Test unicode handling features implemented in unicode.inc.
Code
function helperTestStrLen() {
$testcase = array(
'tHe QUIcK bRoWn' => 15,
'ÜBER-åwesome' => 12,
);
foreach ($testcase as $input => $output) {
$this
->assertEqual(drupal_strlen($input), $output, t('%input length is %output', array(
'%input' => $input,
'%output' => $output,
)));
}
}