Completed
Push — master ( 56185f...c80cc1 )
by Scott
13s
created

Output   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getAllValid() 0 4 1
A getFailing() 0 11 1
1
<?php
2
namespace exussum12\CoverageChecker\tests;
3
4
5
use PHPUnit\Framework\TestCase;
6
7
class Output extends TestCase
8
{
9
    protected function getAllValid()
10
    {
11
        return [];
12
    }
13
14
    protected function getFailing()
15
    {
16
        return [
17
            'file1.php' => [
18
                10 => ['Line 10 has an error'],
19
            ],
20
            'file2.php' => [
21
                15 => ['Line 15 has another error'],
22
            ],
23
        ];
24
    }
25
}
26