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

Output::getAllValid()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 4
rs 10
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