2 declare(strict_types = 1);
19 use Doctrine\DBAL\Platforms\AbstractPlatform;
20 use Doctrine\DBAL\Types\Type;
21 use Prophecy\Argument;
23 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
56 'unquotedValues' => [
'aValue',
'anotherValue'],
59 $databaseProphet = $this->prophesize(AbstractPlatform::class);
60 $databaseProphet->quoteStringLiteral(Argument::cetera())->will(
62 return "'" .
$args[0] .
"'";
68 "SET('aValue', 'anotherValue')",
69 $subject->getSQLDeclaration($fieldDeclaration, $databaseProphet->reveal())