DefaultConfigTest::testMagicConstants PHP Метод

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

Test whether sandbox disallows violating callbacks
public testMagicConstants ( )
    public function testMagicConstants()
    {
        $this->expectException('PHPSandbox\\Error');
        $this->sandbox->execute(function () {
            return __DIR__;
        });
    }