NOSQLTest   A
last analyzed

Complexity

Total Complexity 7

Size/Duplication

Total Lines 41
Duplicated Lines 0 %

Importance

Changes 3
Bugs 1 Features 0
Metric Value
wmc 7
eloc 15
c 3
b 1
f 0
dl 0
loc 41
rs 10

7 Methods

Rating   Name   Duplication   Size   Complexity  
A testDelete() 0 3 1
A testGenerate() 0 3 1
A testBulkInsert() 0 3 1
A testUpdate() 0 3 1
A testForms() 0 3 1
A testInsert() 0 3 1
A testConnection() 0 3 1
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