Completed
Push — master ( 3afa02...cd16cd )
by Andrii
08:00
created

ChkipperConfigControllerTest   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
wmc 3
c 0
b 0
f 0
lcom 1
cbo 1
dl 0
loc 21
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 4 1
A tearDown() 0 3 1
A testInit() 0 4 1
1
<?php
2
/**
3
 * Chkipper plugin for HiDev
4
 *
5
 * @link      https://github.com/hiqdev/hidev-chkipper
6
 * @package   hidev-chkipper
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hidev\chkipper\tests\unit\console;
12
13
use hidev\chkipper\console\ChkipperConfigController;
14
15
/**
16
 * Test for ChkipperConfigController.
17
 */
18
class ChkipperConfigControllerTest extends \PHPUnit\Framework\TestCase
19
{
20
    /**
21
     * @var ChkipperConfigController
22
     */
23
    protected $object;
24
25
    protected function setUp()
26
    {
27
        $this->object = new ChkipperConfigController('chkipper.json', null);
0 ignored issues
show
Documentation introduced by
null is of type null, but the function expects a object<yii\base\Module>.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
28
    }
29
30
    protected function tearDown()
31
    {
32
    }
33
34
    public function testInit()
35
    {
36
        $this->assertInstanceOf(\hidev\base\Controller::class, $this->object);
37
    }
38
}
39