| Total Complexity | 4 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class RpTestRunner |
||
| 15 | { |
||
| 16 | /** @var ImplementationProvider */ |
||
| 17 | private $implementationProvider; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * RpTestRunner constructor. |
||
| 21 | * @param ImplementationProvider $implementationProvider |
||
| 22 | */ |
||
| 23 | public function __construct(ImplementationProvider $implementationProvider) |
||
| 24 | { |
||
| 25 | $this->implementationProvider = $implementationProvider; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function run(RpTestInterface $test, TestInfo $testInfo) |
||
| 48 | } |
||
| 49 | } |
||
| 50 |