DOMPDFModuleTest\View\Strategy\PdfStrategyTest::testDoesNotRenderPdfWhenResultIsNotString PHP Method

testDoesNotRenderPdfWhenResultIsNotString() public method

    public function testDoesNotRenderPdfWhenResultIsNotString()
    {
        $this->event->setRenderer($this->renderer);
        $this->event->setResult(new \stdClass());
        $result = $this->strategy->injectResponse($this->event);
        $this->assertNull($result);
    }