1 | <?php |
||
9 | abstract class AbstractBinaryOp extends \Tests\PHPSA\TestCase |
||
10 | { |
||
11 | /** |
||
12 | * @param $a |
||
13 | * @param $b |
||
14 | * @return Node\Expr |
||
15 | */ |
||
16 | abstract protected function buildExpression($a, $b); |
||
17 | |||
18 | /** |
||
19 | * Tests {left-expr::UNKNOWN} $operator {right-expr} |
||
20 | */ |
||
21 | public function testFirstArgUnexpectedType() |
||
33 | |||
34 | /** |
||
35 | * Tests {left-expr} $operator {right-expr::UNKNOWN} |
||
36 | */ |
||
37 | public function testSecondArgUnexpectedType() |
||
49 | } |
||
50 |