Example #1
0
 /** @test */
 public function it_can_return_the_last_item_from_the_collection()
 {
     $collection = new Collection(['foo' => 'Foo', 'bar' => 'Bar']);
     $this->assertEquals('Bar', $collection->last());
 }