ProjectAssetTest   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 4 1
A tearDown() 0 3 1
A testConstruct() 0 4 1
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