Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 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 |