DefaultConfigTest::testDisallowsHalting PHP Метод

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

Test whether sandbox disallows halting
    public function testDisallowsHalting()
    {
        $this->expectException('PHPSandbox\\Error');
        $this->sandbox->execute('__halt_compiler();');
    }