You are here

public function UnicodeTest::testStrlen in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Component/Utility/UnicodeTest.php \Drupal\Tests\Component\Utility\UnicodeTest::testStrlen()

Tests multibyte strlen.

@dataProvider providerStrlen @covers ::strlen

File

core/tests/Drupal/Tests/Component/Utility/UnicodeTest.php, line 273
Contains \Drupal\Tests\Component\Utility\UnicodeTest.

Class

UnicodeTest
Test unicode handling features implemented in Unicode component.

Namespace

Drupal\Tests\Component\Utility

Code

public function testStrlen($text, $expected) {

  // Run through multibyte code path.
  Unicode::setStatus(Unicode::STATUS_MULTIBYTE);
  $this
    ->assertEquals($expected, Unicode::strlen($text));

  // Run through singlebyte code path.
  Unicode::setStatus(Unicode::STATUS_SINGLEBYTE);
  $this
    ->assertEquals($expected, Unicode::strlen($text));
}