Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6 | class InsertTest extends TestCase |
||
7 | { |
||
8 | public function testConstructorWithEmptyData() |
||
14 | } |
||
15 | |||
16 | public function testConstructorWithValidData() |
||
17 | { |
||
18 | $data = ['field1' => 'value1', 'field2' => 'value2']; |
||
19 | $insert = new Insert('test_table', $data); |
||
20 | |||
21 | $this->assertInstanceOf(Insert::class, $insert); |
||
22 | } |
||
23 | |||
24 | public function testStatement() |
||
31 | } |
||
32 | } |
||
33 |