Neos\Neos\Tests\Unit\Service\HtmlAugmenterTest::addAttributesDoesNotAlterHtmlIfAttributesArrayIsEmpty PHP Метод

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

    public function addAttributesDoesNotAlterHtmlIfAttributesArrayIsEmpty()
    {
        $html = '<p>This is some html</p><p>Without a unique root element</p>';
        $this->assertSame($html, $this->htmlAugmenter->addAttributes($html, array()));
    }