NOSQLTest::testUpdate()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
eloc 2
c 1
b 1
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
1
<?php
2
namespace NOSQL\Test;
3
use PHPUnit\Framework\TestCase;
4
5
/**
6
* Class NOSQLTest
7
* @package NOSQL\Test
8
* @author Fran López <[email protected]>
9
* @version 1.0
10
* Autogenerated test [2019-01-03 15:23:58]
11
*/
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() {
39
        $this->markTestIncomplete(
40
            'This test has not been implemented yet.'
41
        );
42
    }
43
44
    public function testBulkInsert() {
45
        $this->markTestIncomplete(
46
            'This test has not been implemented yet.'
47
        );
48
    }
49
50
    public function testForms() {
51
        $this->markTestIncomplete(
52
            'This test has not been implemented yet.'
53
        );
54
    }
55
}
56