| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | public function testSetErrorAndSuccess(): void { |
||
| 14 | $resultSet = new ResultSet(); |
||
| 15 | $result = new Result(); |
||
| 16 | $result->addError('test'); |
||
| 17 | $resultSet->addResult('x', $result); |
||
| 18 | $resultSet->addResult('x', new Result()); |
||
| 19 | $this->assertFalse($resultSet->getResult('x')->isValid()); |
||
| 20 | } |
||
| 22 |