/**
  * @param Collection $collection
  * @depends testEvery
  */
 public function testEveryReceivesKey(Collection $collection)
 {
     $actual = [];
     $collection->every(function ($value, $key) use(&$actual) {
         $actual[$key] = $value;
         return true;
     });
     $this->assertSame($collection->toArray(), $actual);
 }