コード例 #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());
 }