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