예제 #1
0
파일: TextTest.php 프로젝트: puwenhan/Text
 public function testChars()
 {
     $text = new Text("foo");
     $this->assertEquals(array('f', 'o', 'o'), $text->chars());
     $text = new Text("あいう");
     $this->assertEquals(array('あ', 'い', 'う'), $text->chars());
 }