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