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

testImplementsConfigurationInterface()   A

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
 * 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
}