DefaultConfigTest::testDisallowsDie PHP Method

testDisallowsDie() public method

Test whether sandbox disallows die keyword
public testDisallowsDie ( )
    public function testDisallowsDie()
    {
        $this->expectException('PHPSandbox\\Error');
        $this->sandbox->execute(function () {
            die('Hello World!');
        });
    }