| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | protected function setUp(): void |
||
| 20 | { |
||
| 21 | parent::setUp(); |
||
| 22 | |||
| 23 | $config = require Builder::path('tests'); |
||
| 24 | |||
| 25 | $this->container = new Container($config); |
||
| 26 | |||
| 27 | $this->eventDispatcher = $this->container->get(EventDispatcherInterface::class); |
||
| 28 | $this->listenerProvider = $this->container->get(ListenerProviderInterface::class); |
||
| 29 | |||
| 30 | WidgetFactory::initialize($this->container, []); |
||
| 31 | } |
||
| 40 |