Total Complexity | 3 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
6 | class DatabaseTest extends AbstractTableTest |
||
7 | { |
||
8 | /** |
||
9 | * @throws \Exception |
||
10 | */ |
||
11 | public function testTableList() |
||
12 | { |
||
13 | $res = $this->r() |
||
14 | ->db() |
||
15 | ->tableList() |
||
16 | ->run(); |
||
17 | |||
18 | $this->assertInternalType('array', $res->getData()); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @throws \Exception |
||
23 | */ |
||
24 | public function testCreateTable() |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @throws \Exception |
||
41 | */ |
||
42 | public function testDropTable() |
||
57 |