Neos\Flow\Tests\Unit\Error\DebuggerTest::considersProxyClassWhenIsProxyPropertyIsPresent PHP Method

considersProxyClassWhenIsProxyPropertyIsPresent() public method

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