예제 #1
0
파일: TextTest.php 프로젝트: puwenhan/Text
 public function testSplit()
 {
     $text = new Text('a,b,c');
     $this->assertEquals(array('a', 'b', 'c'), $text->split('/,/'));
 }