Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class TruncateStatementTest extends TestCase |
||
9 | { |
||
10 | public function testBuilder() |
||
11 | { |
||
12 | $query = 'TRUNCATE TABLE mytable;'; |
||
13 | |||
14 | $parser = new Parser($query); |
||
15 | $stmt = $parser->statements[0]; |
||
16 | |||
17 | $this->assertEquals($query, $stmt->build()); |
||
18 | } |
||
19 | |||
20 | public function testBuilderDbtable() |
||
28 | } |
||
29 | |||
30 | public function testBuilderDbtableBackQuotes() |
||
41 |