ValidatorTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testStupid() 0 5 1
1
<?php
2
namespace Rap2hpoutre\LaravelCreditCardValidator\Test;
3
/**
4
 * Class JackyTest
5
 * @package Rap2hpoutre\LaravelCreditCardValidator\Test
6
 */
7
class ValidatorTest extends \PHPUnit_Framework_TestCase
8
{
9
    public function testStupid() 
10
    {
11
        // Todo.
12
        $this->assertTrue(true);
13
    }
14
}
15