Beispiel #1
0
 /**
  * @covers ::length
  */
 public function testLength()
 {
     $this->assertEquals(6, Strings::length("Gollum"));
     Strings::setUseMultiByte(true);
     $this->assertEquals(6, Strings::length("Gollum"));
 }