Completed
Push — master ( 618f38...023c78 )
by Andrii
02:53
created

BoxJsonControllerTest::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
/*
4
 * Box plugin for HiDev
5
 *
6
 * @link      https://github.com/hiqdev/hidev-box
7
 * @package   hidev-box
8
 * @license   BSD-3-Clause
9
 * @copyright Copyright (c) 2016, HiQDev (http://hiqdev.com/)
10
 */
11
12
namespace hidev\box\tests\unit\controllers;
13
14
use hidev\box\controllers\BoxJsonController;
15
16
/**
17
 * Tests for BoxJsonController.
18
 */
19
class BoxJsonControllerTest extends \PHPUnit_Framework_TestCase
20
{
21
    /**
22
     * @var BoxJsonController
23
     */
24
    protected $object;
25
26
    protected function setUp()
27
    {
28
        $this->object = new BoxJsonController('.box.json', null);
29
    }
30
31
    protected function tearDown()
32
    {
33
    }
34
35
    public function testConstructor()
36
    {
37
        $this->assertInstanceOf('hidev\base\Controller', $this->object);
38
    }
39
}
40