BaseControllerTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
c 0
b 0
f 0
dl 0
loc 6
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testConstructor() 0 3 1
1
<?php
2
3
namespace Cowglow\InstagramGallery\Tests\Application;
4
5
use Cowglow\InstagramGallery\Tests\AbstractTestBase;
6
7
class BaseControllerTest extends AbstractTestBase
8
{
9
10
    public function testConstructor()
11
    {
12
        $this->assertTrue(true);
13
    }
14
}
15