Completed
Push — master ( febdbe...957a77 )
by Fran
03:33
created

NOSQLTest::testNOSQLBase()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 2
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 0
1
<?php
2
namespace NOSQL\Test;
3
use PHPUnit\Framework\TestCase;
0 ignored issues
show
Bug introduced by
The type PHPUnit\Framework\TestCase was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
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
        // TODO
16
    }
17
18
    public function testGenerate() {
19
        // TODO
20
    }
21
22
    public function testInsert() {
23
        // TODO
24
    }
25
26
    public function testUpdate() {
27
        // TODO
28
    }
29
30
    public function testDelete() {
31
        // TODO
32
    }
33
34
    public function testBulkInsert() {
35
        // TODO
36
    }
37
38
    public function testForms() {
39
        // TODO
40
    }
41
}
42