DefaultConfigTest::testDisallowsCasting PHP Method

testDisallowsCasting() public method

Test whether sandbox disallows casting
    public function testDisallowsCasting()
    {
        $this->expectException('PHPSandbox\\Error');
        $this->sandbox->execute(function () {
            return (bool) '1';
        });
    }