public function testFirstAndLast()
 {
     $this->collection->add('one');
     $this->collection->add('two');
     $this->assertEquals($this->collection->first(), 'one');
     $this->assertEquals($this->collection->last(), 'two');
 }