/**
  * @test
  */
 public function shouldConstructGenericCollection()
 {
     $emptyArray = [];
     $dataArray = ['id' => 1];
     $emptyConstructCollection = new GenericCollection();
     $emptyCollection = new GenericCollection($emptyArray);
     $dataCollection = new GenericCollection($dataArray);
     $this->assertEquals($emptyArray, $emptyConstructCollection->toArray());
     $this->assertEquals($emptyArray, $emptyCollection->toArray());
     $this->assertEquals($dataArray, $dataCollection->toArray());
 }