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