Completed
Push — master ( 120c03...45b1e4 )
by Yo
02:28
created

YoanmTestsStrategyListener   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 3
dl 0
loc 8
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
namespace Yoanm\PhpUnitExtended\Listener;
3
4
/**
5
 * @see doc/listener/YoanmTestsStrategyListener.md
6
 */
7
class YoanmTestsStrategyListener extends DelegatingListener
8
{
9 1
    public function __construct()
10
    {
11 1
        $this->addListener(new RiskyToFailedListener());
12 1
        $this->addListener(new StrictCoverageListener());
13 1
    }
14
}
15