| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class ExpressionArrayTest extends TestCase |
||
| 10 | { |
||
| 11 | public function testParse() |
||
| 12 | { |
||
| 13 | $component = ExpressionArray::parse( |
||
| 14 | new Parser(), |
||
| 15 | $this->getTokensList('(expr)'), |
||
| 16 | array( |
||
| 17 | 'breakOnParentheses' => true |
||
| 18 | ) |
||
| 19 | ); |
||
| 20 | $this->assertEquals(array(), $component); |
||
| 21 | } |
||
| 22 | |||
| 23 | public function testParse2() |
||
| 34 | } |
||
| 35 | } |
||
| 36 |