Kraken\_Integration\Boot\ConsoleServerTest::testCaseServer_DoesNotThrowException_WhenBooted PHP Метод

testCaseServer_DoesNotThrowException_WhenBooted() публичный Метод

    public function testCaseServer_DoesNotThrowException_WhenBooted()
    {
        if (ini_get('allow_url_include') !== '1') {
            return;
        }
        global $loader;
        $loader = $this->getMock(ClassLoader::class, [], [], '', false);
        $dataPath = realpath(__DIR__ . '/..') . '/_Data';
        $console = (new ServerBoot())->boot($dataPath);
        $console->destroy();
        unset($console);
    }