Exemplo n.º 1
0
 /**
  * Test shifting element from collection
  *
  * @return void
  */
 public function testShift()
 {
     $element = $this->collection->shift();
     $this->assertCount(2, $this->collection);
     $this->assertFalse($this->collection->contains(1));
     $this->assertEquals(1, $element);
 }