| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class EmptyTest extends CommonTestClass |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @throws MapperException |
||
| 16 | */ |
||
| 17 | public function testAll(): void |
||
| 18 | { |
||
| 19 | $qb = new Builder(); |
||
| 20 | $sql = new EmptyDialect(); |
||
| 21 | $this->assertEmpty($sql->describe($qb)); |
||
| 22 | $this->assertEmpty($sql->insert($qb)); |
||
| 23 | $this->assertEmpty($sql->update($qb)); |
||
| 24 | $this->assertEmpty($sql->select($qb)); |
||
| 25 | $this->assertEmpty($sql->delete($qb)); |
||
| 26 | $this->assertEmpty($sql->availableJoins()); |
||
| 27 | } |
||
| 29 |