CodeCoverageGoodCheck::run()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
cc 2
eloc 2
c 1
b 1
f 0
nc 2
nop 0
dl 0
loc 4
rs 10
1
<?php
2
3
namespace SilverStripe\ModuleRatings\Check;
4
5
class CodeCoverageGoodCheck extends AbstractCodeCoverageCheck
6
{
7
    protected $threshold = 40;
8
9
    public function getKey()
10
    {
11
        return 'good_code_coverage';
12
    }
13
14
    public function getDescription()
15
    {
16
        return 'Has a "good" level of code coverage (greater than ' . $this->threshold . '%, requires slug)';
17
    }
18
19
    public function run()
20
    {
21
        if ($this->getCoverage() >= $this->getThreshold()) {
22
            $this->setSuccessful(true);
23
        }
24
    }
25
}
26