/**
  * Test getting collection values
  *
  * @return void
  */
 public function testGetValues()
 {
     $collection = new BaseCollection([1, 2, 3, 'a' => 4, 'b' => 5]);
     $this->assertEquals([1, 2, 3, 4, 5], $collection->getValues());
 }