コード例 #1
0
ファイル: TextTest.php プロジェクト: puwenhan/Text
 public function testSplit()
 {
     $text = new Text('a,b,c');
     $this->assertEquals(array('a', 'b', 'c'), $text->split('/,/'));
 }