Exemplo n.º 1
0
 public function testChars()
 {
     $text = new Text("foo");
     $this->assertEquals(array('f', 'o', 'o'), $text->chars());
     $text = new Text("あいう");
     $this->assertEquals(array('あ', 'い', 'う'), $text->chars());
 }