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 ( 1414c5...bedae0 )
by Xaf
35s
created

CupsTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testHasNormalLength() 0 4 1
1
<?php
2
3
namespace Tests;
4
5
use CupsGenerator\Cups;
6
7
/**
8
 * Cups generator test.
9
 *
10
 * @link https://es.wikipedia.org/wiki/C%C3%B3digo_Unificado_de_Punto_de_Suministro
11
 */
12
class CupsTest extends \PHPUnit_Framework_TestCase
13
{
14
    public function testHasNormalLength()
15
    {
16
        $this->assertEquals(strlen((new Cups())->generate()), 20);
17
    }
18
}
19