Neos\Flow\Tests\Unit\Error\DebuggerTest::considersProxyClassWhenIsProxyPropertyIsPresent PHP Метод

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

    public function considersProxyClassWhenIsProxyPropertyIsPresent()
    {
        $object = new \stdClass();
        $object->__IS_PROXY__ = true;
        $this->assertRegExp('/\\sclass=\\"debug\\-proxy\\"/', Debugger::renderDump($object, 0, false));
    }