Completed
Branch master (4042af)
by Aleksandar
02:14
created

ConfigProviderTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 7
Bugs 0 Features 0
Metric Value
c 7
b 0
f 0
dl 0
loc 8
rs 10
wmc 1
lcom 0
cbo 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Article\Test;
6
7
class ConfigProviderTest extends \PHPUnit_Framework_TestCase
8
{
9
    public function testInvokeShouldReturnAdminConfigProvider()
10
    {
11
        $configProvider = new \Article\ConfigProvider();
12
        static::assertInternalType('array', $configProvider());
13
    }
14
}
15