| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function testGetExpression(): void |
||
| 16 | { |
||
| 17 | $checkConstraint = new CheckConstraint(); |
||
| 18 | |||
| 19 | $this->assertSame('', $checkConstraint->getExpression()); |
||
| 20 | |||
| 21 | $checkConstraint = $checkConstraint->expression('expression'); |
||
| 22 | |||
| 23 | $this->assertSame('expression', $checkConstraint->getExpression()); |
||
| 24 | } |
||
| 26 |