Completed
Push — master ( e0f002...12cea2 )
by Matthew
02:27
created

ConfigurationTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

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