| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function testConstructor(): void |
||
| 17 | { |
||
| 18 | $condition = new BetweenColumnsCondition(42, 'between', 'min_value', 'max_value'); |
||
| 19 | $this->assertSame(42, $condition->getValue()); |
||
| 20 | $this->assertSame('between', $condition->getOperator()); |
||
| 21 | $this->assertSame('min_value', $condition->getIntervalStartColumn()); |
||
| 22 | $this->assertSame('max_value', $condition->getIntervalEndColumn()); |
||
| 23 | } |
||
| 32 |