| Total Complexity | 2 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php declare(strict_types = 1); |
||
| 14 | final class Bukashk0zzzFilterExtensionTest extends TestCase |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var Bukashk0zzzFilterExtension Bukashk0zzzFilterExtension |
||
| 18 | */ |
||
| 19 | private $extension; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var ContainerBuilder Container builder |
||
| 23 | */ |
||
| 24 | private $container; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Setup. |
||
| 28 | */ |
||
| 29 | protected function setUp(): void |
||
| 30 | { |
||
| 31 | $this->extension = new Bukashk0zzzFilterExtension(); |
||
| 32 | $this->container = new ContainerBuilder(); |
||
| 33 | |||
| 34 | $this->container->set('annotations.cached_reader', new \stdClass()); |
||
| 35 | |||
| 36 | $this->container->registerExtension($this->extension); |
||
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Test load extension. |
||
| 41 | */ |
||
| 42 | public function testLoadExtension(): void |
||
| 50 | } |
||
| 51 | } |
||
| 52 |