| Total Complexity | 3 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class IsEmptyTest extends AbstractTableTest |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @throws \Exception |
||
| 12 | */ |
||
| 13 | public function testIsEmpty() |
||
| 14 | { |
||
| 15 | $res = $this->r() |
||
| 16 | ->table('tabletest') |
||
| 17 | ->isEmpty() |
||
| 18 | ->run(); |
||
| 19 | |||
| 20 | $this->assertTrue($res->getData()); |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @throws \Exception |
||
| 25 | */ |
||
| 26 | public function testIsNotEmpty() |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @throws \Exception |
||
| 40 | */ |
||
| 41 | public function testFilterIsNotEmpty() |
||
| 58 |