| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 12 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 48 | public function testLeftRight() | ||
| 49 |     { | ||
| 50 | $this | ||
| 51 | /* @var \Cubiche\Core\Specification\Constraint\BinaryConstraintOperator $constraint */ | ||
| 52 | ->given($constraint = $this->newDefaultTestedInstance()) | ||
| 53 | ->then() | ||
| 54 | ->object($constraint->left()) | ||
| 55 | ->isInstanceOf(SelectorInterface::class) | ||
| 56 | ->object($constraint->right()) | ||
| 57 | ->isInstanceOf(SelectorInterface::class) | ||
| 58 | ; | ||
| 59 | } | ||
| 60 | } | ||
| 61 |