| 1 | <?php |
||
| 13 | class BooleanNotTest extends \Tests\PHPSA\TestCase |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @return array |
||
| 17 | */ |
||
| 18 | public function getDataProvider() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Tests !{expr} |
||
| 30 | * |
||
| 31 | * @see \PHPSA\Compiler\Expression\Operators\Logical\BooleanNot |
||
| 32 | * @dataProvider getDataProvider |
||
| 33 | */ |
||
| 34 | public function testSimpleSuccessCompile($a, $b) |
||
| 45 | |||
| 46 | public function testUnexpectedType() |
||
| 57 | } |
||
| 58 |