Kraken\_Integration\Boot\ProcessTest::testCaseProcess_DoesNotThrowException_WhenBooted PHP Method

testCaseProcess_DoesNotThrowException_WhenBooted() public method

    public function testCaseProcess_DoesNotThrowException_WhenBooted()
    {
        if (ini_get('allow_url_include') !== '1') {
            return;
        }
        global $loader;
        $loader = $this->getMock(ClassLoader::class, [], [], '', false);
        $dataPath = realpath(__DIR__ . '/..') . '/_Data';
        $process = (new ProcessBoot())->controllers(RuntimeContainerMock::class)->constructor(['undefined', 'alias', 'name'])->boot($dataPath);
        $process->destroy();
        unset($process);
    }