Update namespaces
This commit is contained in:
15
tests/MySQLDeleteTest.php
Normal file
15
tests/MySQLDeleteTest.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class MySQLDeleteTest extends TestCase
|
||||
{
|
||||
public function testBaseQuery(): void
|
||||
{
|
||||
$query = new Database\Implement\Query\MySQL\Delete();
|
||||
$query->from('test_table');
|
||||
|
||||
$expected = "DELETE FROM `test_table`";
|
||||
|
||||
$this->assertEquals($expected, "{$query}");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user