CodeExplorer IncrementStorageRegistry example
private IncrementArrayStorage
$arrayStorage;
private CommandTester
$tester;
protected function setUp(): void
{ $this->sqlStorage =
$this->
getContainer()->
get(IncrementSqlStorage::
class);
$this->arrayStorage =
new IncrementArrayStorage([]);
$command =
new MigrateIncrementStorageCommand( new IncrementStorageRegistry(new \
ArrayObject( [ 'SQL' =>
$this->sqlStorage,
'Array' =>
$this->arrayStorage,
] ), 'SQL'
) );
$this->tester =
new CommandTester($command);
} public function testMigrateWithConfirmation(): void
{