Neos\Cache\Tests\Unit\Backend\SimpleFileBackendTest::requireOnceDoesNotSwallowPhpNoticesOfTheIncludedFile PHP 메소드

requireOnceDoesNotSwallowPhpNoticesOfTheIncludedFile() 공개 메소드

    public function requireOnceDoesNotSwallowPhpNoticesOfTheIncludedFile()
    {
        $entryIdentifier = 'SomePhpEntryWithPhpNotice';
        $simpleFileBackend = $this->getSimpleFileBackend();
        $simpleFileBackend->set($entryIdentifier, '<?php $undefined ++; ?>');
        $simpleFileBackend->requireOnce($entryIdentifier);
    }