| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types = 1); |
||
| 10 | final class AggregateTest extends TestCase |
||
| 11 | { |
||
| 12 | |||
| 13 | public function testAccept(): void |
||
| 14 | { |
||
| 15 | /** @var AbstractNode $nodeMock */ |
||
| 16 | $nodeMock = $this->getMockBuilder(AbstractNode::class)->getMock(); |
||
| 17 | self::assertTrue((new Aggregate)->accept($nodeMock)); |
||
| 18 | } |
||
| 19 | |||
| 20 | |||
| 21 | public function testVisitThrowsException(): void |
||
| 29 | } |
||
| 30 | |||
| 32 |