Пример #1
0
 /**
  * Test un-shifting element onto collection
  *
  * @return void
  */
 public function testUnshift()
 {
     $this->collection->unshift(0);
     $this->assertCount(4, $this->collection);
     $this->assertTrue($this->collection->contains(0));
     $this->assertEquals(0, $this->collection->get(0));
 }