DefaultConfigTest::testDisallowsTraits PHP Метод

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

Test whether sandbox disallows traits
public testDisallowsTraits ( )
    public function testDisallowsTraits()
    {
        $this->expectException('PHPSandbox\\Error');
        $this->sandbox->execute('trait Foo {}');
    }