DefaultConfigTest::testDisallowsEval PHP Method

testDisallowsEval() public method

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