/**
  * @test
  * @expectedException        \Exception
  * @expectedExceptionMessage Impossible build the reader engine
  */
 public function testImportCommandWithoutProvider()
 {
     $cmd = new ImportCommand();
     $cmd->execute(null);
 }
 public function executeWithProvider(ReaderInterface $readerEngine)
 {
     parent::executeWithProvider($readerEngine);
 }