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