testImplementsConfigurationInterface()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
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
}