static::
expectException(RenderFooterException::
class);
throw $exception;
} /**
* @DisabledFeatures(features={"v6.6.0.0"})
*/
public function testRenderHeaderException(): void
{ $exception = ProductExportException::
renderHeaderException('Header!'
);
static::
assertSame('Failed rendering string template using Twig: Header!',
$exception->
getMessage());
static::
expectException(RenderHeaderException::
class);
throw $exception;
} /**
* @DisabledFeatures(features={"v6.6.0.0"})
*/
public function testRenderProductException(): void
{