1 | <?php |
||
16 | class DispatchingSimplifierTest extends \PHPUnit_Framework_TestCase { |
||
17 | |||
18 | protected function buildSimplifier() { |
||
19 | return new DispatchingSimplifier(array( |
||
20 | new SetOperatorNodeSimplifier() |
||
21 | )); |
||
22 | } |
||
23 | |||
24 | public function testImplementsNodeSimplifierInterface() { |
||
27 | |||
28 | public function testIsNodeSimplifierForReturnsTrue() { |
||
31 | |||
32 | public function testIsNodeSimplifierForReturnsFalse() { |
||
35 | |||
36 | public function testSimplification() { |
||
48 | } |
||
49 |