$config =
array_merge($clonedCustomerProfile->
getConfig(),
$configOverrides);
$this->
updateProfileConfig($clonedCustomerProfile->
getId(),
$config);
$file =
new UploadedFile(__DIR__ . '/fixtures/customers.csv', 'customers_used_with_config.csv', 'text/csv'
);
$logEntity =
$importExportService->
prepareImport( $context,
$clonedCustomerProfile->
getId(),
$expireDate,
$file );
$progress =
new Progress($logEntity->
getId(), Progress::STATE_PROGRESS, 0, null
);
$pipeFactory =
$this->
getContainer()->
get(PipeFactory::
class);
$readerFactory =
$this->
getContainer()->
get(CsvReaderFactory::
class);
$writerFactory =
$this->
getContainer()->
get(CsvFileWriterFactory::
class);
$mockRepository =
new MockRepository($this->
getContainer()->
get(CustomerDefinition::
class));
$importExport =
new ImportExport( $importExportService,
$logEntity,
$this->
getContainer()->
get('shopware.filesystem.private'
),