We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb7d61f commit a3216a4Copy full SHA for a3216a4
1 file changed
tests/TestCase/Command/DumpSqlCommandTest.php
@@ -46,6 +46,7 @@ public function testCommand(): void
46
$this->assertOutputContains('CREATE TABLE IF NOT EXISTS "posts"');
47
$this->assertOutputContains('INSERT INTO posts VALUES(');
48
} elseif ($this->isDBType(Mysql::class)) {
49
+ var_dump($this->_out->messages());
50
$this->assertOutputContains('CREATE TABLE `posts` (');
51
$this->assertOutputContains('INSERT INTO `posts` VALUES (');
52
} elseif ($this->isDBType(Postgres::class)) {
0 commit comments