%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11584/root/var/www/html/ppaobm/vendor/codeception/base/tests/unit/Codeception/Lib/ |
Upload File : |
<?php namespace Codeception\Lib; class DiTest extends \Codeception\Test\Unit { /** * @var Di */ protected $di; protected function setUp() { $this->di = new Di(); } protected function injectionShouldFail($msg = '') { $this->setExpectedException('Codeception\Exception\InjectionException', $msg); } public function testFailDependenciesCyclic() { require_once codecept_data_dir().'FailDependenciesCyclic.php'; $this->injectionShouldFail( 'Failed to resolve cyclic dependencies for class \'FailDependenciesCyclic\IncorrectDependenciesClass\'' ); $this->di->instantiate('FailDependenciesCyclic\IncorrectDependenciesClass'); } public function testFailDependenciesInChain() { require_once codecept_data_dir().'FailDependenciesInChain.php'; $this->injectionShouldFail('Failed to resolve dependency \'FailDependenciesInChain\AnotherClass\''); $this->di->instantiate('FailDependenciesInChain\IncorrectDependenciesClass'); } public function testFailDependenciesNonExistent() { require_once codecept_data_dir().'FailDependenciesNonExistent.php'; $this->injectionShouldFail('Class FailDependenciesNonExistent\NonExistentClass does not exist'); $this->di->instantiate('FailDependenciesNonExistent\IncorrectDependenciesClass'); } public function testFailDependenciesPrimitiveParam() { require_once codecept_data_dir().'FailDependenciesPrimitiveParam.php'; $this->injectionShouldFail('Parameter \'required\' must have default value'); $this->di->instantiate('FailDependenciesPrimitiveParam\IncorrectDependenciesClass'); } }