Completed
Push — master ( 2978d4...d81d32 )
by Andrii
02:44
created

ReadmeControllerTest   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 4
c 1
b 1
f 0
lcom 1
cbo 1
dl 0
loc 26
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 4 1
A tearDown() 0 3 1
A testRenderH1() 0 4 1
A testRenderH2() 0 4 1
1
<?php
2
3
/*
4
 * README plugin for HiDev
5
 *
6
 * @link      https://github.com/hiqdev/hidev-readme
7
 * @package   hidev-readme
8
 * @license   BSD-3-Clause
9
 * @copyright Copyright (c) 2015-2016, HiQDev (http://hiqdev.com/)
10
 */
11
12
namespace hidev\readme\tests\unit\controllers;
13
14
use hidev\readme\controllers\ReadmeController;
15
16
/**
17
 * Readme Controller test class.
18
 */
19
class ReadmeControllerTest extends \PHPUnit_Framework_TestCase
20
{
21
    /**
22
     * @var ReadmeController
23
     */
24
    protected $object;
25
26
    protected function setUp()
27
    {
28
        $this->object = new ReadmeController('README', 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...
29
    }
30
31
    protected function tearDown()
32
    {
33
    }
34
35
    public function testRenderH1()
36
    {
37
        $this->assertSame("Test\n====\n", $this->object->renderH1('Test'));
38
    }
39
40
    public function testRenderH2()
41
    {
42
        $this->assertSame("Test\n----\n", $this->object->renderH2('Test'));
43
    }
44
}
45