/**
  * @param string $entityName
  * @param array $input
  * @param array $expected
  * @dataProvider importDataProvider
  */
 public function testImport($entityName, array $input, array $expected)
 {
     $this->converter->setEntityName($entityName);
     $this->assertSame($expected, $this->converter->convertToImportFormat($input));
 }