Beispiel #1
0
 /**
  * @covers ::chars
  */
 public function testChars()
 {
     $this->assertEquals(["G", "o", "l", "l", "u", "m"], Strings::chars("Gollum"));
     Strings::setUseMultiByte(true);
     $this->assertEquals(["G", "o", "l", "l", "u", "m"], Strings::chars("Gollum"));
 }