Carew\Tests\ProcessorTest::testProcessDocumentDecorationWithExceptionWithoutFile PHP Method

testProcessDocumentDecorationWithExceptionWithoutFile() public method

    public function testProcessDocumentDecorationWithExceptionWithoutFile()
    {
        $this->eventDispatcher->addListener(Events::DOCUMENT_DECORATION, function () {
            throw new \Exception('Exception message');
        });
        $document = new Document();
        $document->setBody('Body');
        $this->processor->processDocumentDecoration($document);
    }