DefaultConfigTest::testDisallowsConstants PHP Метод

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

Test whether sandbox disallows classes
    public function testDisallowsConstants()
    {
        $this->expectException('PHPSandbox\\Error');
        $this->sandbox->execute(function () {
            define('TEST', 'Hello World!');
            return TEST;
        });
    }