Completed
Push — master ( 225215...08f983 )
by Andrii
04:46
created

TravisControllerTest::testConstructor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/**
3
 * Travis CI plugin for HiDev
4
 *
5
 * @link      https://github.com/hiqdev/hidev-travis
6
 * @package   hidev-travis
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2015-2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hidev\travis\tests\unit\console;
12
13
use hidev\travis\console\TravisController;
14
15
/**
16
 * Tests for TravisController.
17
 */
18
class TravisControllerTest extends \PHPUnit\Framework\TestCase
19
{
20
    /**
21
     * @var TravisController
22
     */
23
    protected $object;
24
25
    protected function setUp()
26
    {
27
        $this->object = new TravisController('travis', 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 testConstructor()
35
    {
36
        $this->assertInstanceOf(\hidev\base\Controller::class, $this->object);
37
    }
38
}
39