Skip to content

Commit 0c01b2b

Browse files
MC-38765: Ensure there are no split db specific tests
1 parent f55f411 commit 0c01b2b

File tree

1 file changed

+0
-40
lines changed
  • dev/tests/setup-integration/framework/Magento/TestFramework/Deploy

1 file changed

+0
-40
lines changed

dev/tests/setup-integration/framework/Magento/TestFramework/Deploy/CliCommand.php

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -111,46 +111,6 @@ public function disableModule($moduleName)
111111
return $this->shell->execute($disableModuleCommand);
112112
}
113113

114-
/**
115-
* Split quote db configuration.
116-
*
117-
* @return void
118-
* @throws LocalizedException
119-
*/
120-
public function splitQuote()
121-
{
122-
$initParams = $this->parametersHolder->getInitParams();
123-
$installParams = $this->toCliArguments(
124-
$this->parametersHolder->getDbData('checkout')
125-
);
126-
$command = $this->getCliScriptCommand() . ' setup:db-schema:split-quote ' .
127-
implode(" ", array_keys($installParams)) .
128-
' -vvv --no-interaction --magento-init-params="' .
129-
$initParams['magento-init-params'] . '"';
130-
131-
$this->shell->execute($command, array_values($installParams));
132-
}
133-
134-
/**
135-
* Split sales db configuration.
136-
*
137-
* @return void
138-
* @throws LocalizedException
139-
*/
140-
public function splitSales()
141-
{
142-
$initParams = $this->parametersHolder->getInitParams();
143-
$installParams = $this->toCliArguments(
144-
$this->parametersHolder->getDbData('sales')
145-
);
146-
$command = $this->getCliScriptCommand() . ' setup:db-schema:split-sales ' .
147-
implode(" ", array_keys($installParams)) .
148-
' -vvv --magento-init-params="' .
149-
$initParams['magento-init-params'] . '"';
150-
151-
$this->shell->execute($command, array_values($installParams));
152-
}
153-
154114
/**
155115
* Clean all types of cache
156116
*/

0 commit comments

Comments
 (0)