GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 0165b3...f3e283 )
by Bruno
13:51
created

ConfigutationTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 2
dl 0
loc 22
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A testIsInstanceOf() 0 5 1
A testGetConfigBuilderInstanceOf() 0 6 1
1
<?php
2
namespace OnurbTest\Bundle\YumlBundle\DependencyInjection;
3
4
use Onurb\Bundle\YumlBundle\DependencyInjection\Configuration;
5
6
class ConfigutationTest extends \PHPUnit_Framework_TestCase
7
{
8
9
    /**
10
     * @covers Onurb\Bundle\YumlBundle\DependencyInjection\Configuration
11
     */
12
    public function testIsInstanceOf()
13
    {
14
        $configuration = new Configuration();
15
        $this->assertInstanceOf("Symfony\\Component\\Config\\Definition\\ConfigurationInterface", $configuration);
16
    }
17
18
    /**
19
     * @covers Onurb\Bundle\YumlBundle\DependencyInjection\Configuration
20
     */
21
    public function testGetConfigBuilderInstanceOf()
22
    {
23
        $configuration = new Configuration();
24
        $return = $configuration->getConfigTreeBuilder();
25
        $this->assertInstanceOf('Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder', $return);
26
    }
27
}
28