Esempio n. 1
0
 public function testCanCreateFromRepeat()
 {
     $repeat = Arrays::repeat('foo', 3);
     $this->assertEquals(array('foo', 'foo', 'foo'), $repeat);
 }