ConfigurationTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 0
cbo 1
dl 0
loc 11
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A testImplementsConfigurationInterface() 0 5 1
1
<?php
2
3
namespace Mpclarkson\ResqueBundle\Tests\DependencyInjection;
4
5
use Mpclarkson\ResqueBundle\DependencyInjection\Configuration;
6
use Symfony\Component\Config\Definition\ConfigurationInterface;
7
8
/**
9
 * Class ConfigurationTest
10
 * @package Mpclarkson\ResqueBundle\Tests\DependencyInjection
11
 */
12
class ConfigurationTest extends \PHPUnit_Framework_TestCase
13
{
14
    /**
15
     *
16
     */
17
    public function testImplementsConfigurationInterface()
18
    {
19
        $rc = new \ReflectionClass(Configuration::class);
20
        $this->assertTrue($rc->implementsInterface(ConfigurationInterface::class));
21
    }
22
}