Completed
Push — develop ( 2e1df2...27dbda )
by Mathieu
03:22
created

ServiceTest::testSetException()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 5
rs 10
c 1
b 0
f 1
1
<?php
2
class ServiceTest extends 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...
3
    
4
    public function testGetException()
5
    {
6
        $this->expectException(InvalidArgumentException::class);
7
        $service = new \Suricate\Service();
8
        $service->undefVar;
0 ignored issues
show
Bug Best Practice introduced by
The property undefVar does not exist on Suricate\Service. Since you implemented __get, consider adding a @property annotation.
Loading history...
9
    }
10
11
    public function testSetException()
12
    {
13
        $this->expectException(InvalidArgumentException::class);
14
        $service = new \Suricate\Service();
15
        $service->undefVar = "123";
0 ignored issues
show
Bug Best Practice introduced by
The property undefVar does not exist on Suricate\Service. Since you implemented __set, consider adding a @property annotation.
Loading history...
16
    }
17
18
}
19