| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class TestSuiteImplementation extends TestSuiteFactory |
||
| 10 | { |
||
| 11 | public function prepareTests() |
||
| 12 | { |
||
| 13 | $a = new TestResult('a', 'b'); |
||
| 14 | $b = new TestResult('c', 'd'); |
||
| 15 | $c = new TestResult('e', 'f'); |
||
| 16 | |||
| 17 | $a->setState(State::ERROR); |
||
| 18 | $b->setState(State::WARNING); |
||
| 19 | $c->setState(State::OK); |
||
| 20 | |||
| 21 | $this->addTestResults([$a, $b]); |
||
| 22 | $this->addTestResult($c); |
||
| 23 | |||
| 24 | return [$a, $b, $c]; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function invokeTest() |
||
| 31 | } |
||
| 32 | } |
||
| 33 |