Adds sql generation test
This commit is contained in:
parent
44e82e2720
commit
ae6d80daab
1 changed files with 8 additions and 0 deletions
|
@ -36,6 +36,14 @@ class DeleteSqlGenerationTest extends OrmTestCase
|
|||
}
|
||||
}
|
||||
|
||||
public function testSupportsDeleteWithoutWhereAndAlias() : void
|
||||
{
|
||||
$this->assertSqlGeneration(
|
||||
'DELETE FROM Doctrine\Tests\Models\CMS\CmsUser',
|
||||
'DELETE FROM cms_users'
|
||||
);
|
||||
}
|
||||
|
||||
public function testSupportsDeleteWithoutWhereAndFrom()
|
||||
{
|
||||
$this->assertSqlGeneration(
|
||||
|
|
Loading…
Add table
Reference in a new issue