Esempio n. 1
0
 public function testSplit()
 {
     $text = new Text('a,b,c');
     $this->assertEquals(array('a', 'b', 'c'), $text->split('/,/'));
 }