| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class AndConditionsTest extends TestCase |
||
| 14 | { |
||
| 15 | public function testConstructor(): void |
||
| 16 | { |
||
| 17 | $andCondition = new AndCondition(['a' => 1, 'b' => 2]); |
||
| 18 | |||
| 19 | $this->assertSame(['a' => 1, 'b' => 2], $andCondition->getExpressions()); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function testGetOperator(): void |
||
| 27 | } |
||
| 28 | } |
||
| 29 |