![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/codeception/codeception/src/Codeception/Subscriber/ |
<?php declare(strict_types=1); namespace Codeception\Subscriber; use Codeception\Event\TestEvent; use Codeception\Events; use Codeception\Lib\Di; use Codeception\Test\Cest; use Codeception\Test\Unit; use Codeception\TestInterface; use Symfony\Component\EventDispatcher\EventSubscriberInterface; class PrepareTest implements EventSubscriberInterface { use Shared\StaticEventsTrait; /** * @var array<string, string> */ protected static array $events = [ Events::TEST_BEFORE => 'prepare', ]; protected array $modules = []; public function prepare(TestEvent $event): void { $test = $event->getTest(); if (!$test instanceof TestInterface) { return; } $prepareMethods = $test->getMetadata()->getParam('prepare'); if (!$prepareMethods) { return; } /** @var Di $di */ $di = $test->getMetadata()->getService('di'); foreach ($prepareMethods as $method) { if ($test instanceof Cest) { $di->injectDependencies($test->getTestInstance(), $method); } if ($test instanceof Unit) { $di->injectDependencies($test, $method); } } } }