/**
  * testToArray
  *
  * @param $input
  * @param $recursive
  * @param $expect
  *
  * @return  void
  *
  * @dataProvider  seedTestToArray
  * @covers        Windwalker\Utilities\ArrayHelper::toArray
  */
 public function testToArray($input, $recursive, $expect)
 {
     $this->assertEquals($expect, RegistryHelper::toArray($input, $recursive));
 }