Total Complexity | 7 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
12 | class NOSQLTest extends TestCase { |
||
13 | |||
14 | public function testConnection() { |
||
15 | $this->markTestIncomplete( |
||
16 | 'This test has not been implemented yet.' |
||
17 | ); |
||
18 | } |
||
19 | |||
20 | public function testGenerate() { |
||
21 | $this->markTestIncomplete( |
||
22 | 'This test has not been implemented yet.' |
||
23 | ); |
||
24 | } |
||
25 | |||
26 | public function testInsert() { |
||
27 | $this->markTestIncomplete( |
||
28 | 'This test has not been implemented yet.' |
||
29 | ); |
||
30 | } |
||
31 | |||
32 | public function testUpdate() { |
||
33 | $this->markTestIncomplete( |
||
34 | 'This test has not been implemented yet.' |
||
35 | ); |
||
36 | } |
||
37 | |||
38 | public function testDelete() { |
||
41 | ); |
||
42 | } |
||
43 | |||
44 | public function testBulkInsert() { |
||
47 | ); |
||
48 | } |
||
49 | |||
50 | public function testForms() { |
||
53 | ); |
||
54 | } |
||
55 | } |
||
56 |