Total Complexity | 5 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class EmptyTableTest extends BaseTestCase |
||
12 | { |
||
13 | public function setUp() |
||
19 | } |
||
20 | } |
||
21 | |||
22 | public function tearDown() |
||
23 | { |
||
24 | if (\in_array('tabletest', $this->r()->db()->tableList()->run()->getData(), true)) { |
||
25 | $this->r()->db()->tableDrop('tabletest')->run(); |
||
26 | } |
||
27 | |||
28 | parent::tearDown(); |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @throws \Exception |
||
33 | */ |
||
34 | public function testEmptyTable() |
||
55 | } |
||
56 | } |
||
57 |