ProjectAssetTest::setUp()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 * AHnames implementation of HiPanel
4
 *
5
 * @link      https://ahnames.com/
6
 * @package   hipanel
7
 * @license   proprietary
8
 * @copyright Copyright (c) 2015-2017, AHnames (https://ahnames.com/)
9
 */
10
11
12
namespace ahnames\hipanel\tests\unit\assets;
13
14
use ahnames\hipanel\assets\ProjectAsset;
15
16
/**
17
 * Generated by PHPUnit_SkeletonGenerator on 2016-05-14 at 05:02:19.
18
 */
19
class ProjectAssetTest extends \PHPUnit_Framework_TestCase
20
{
21
    /**
22
     * @var ProjectAsset
23
     */
24
    protected $object;
25
26
    protected function setUp()
27
    {
28
        $this->object = new ProjectAsset;
29
    }
30
31
    protected function tearDown()
32
    {
33
    }
34
35
    public function testConstruct()
36
    {
37
        $this->assertInstanceOf(ProjectAsset::class, $this->object);
38
    }
39
}
40