php-src/ext/xsl/tests/xsltprocessor_transformToDoc_no_stylesheet.phpt
2020-09-28 16:02:31 +02:00

17 lines
348 B
PHP

--TEST--
Calling XSLTProcessor::transformToDoc() without stylesheet
--FILE--
<?php
$doc = new DOMDocument('1.0', 'utf-8');
$xsl = new XSLTProcessor;
try {
$xsl->transformToDoc($doc);
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
XSLTProcessor::transformToDoc() can only be called after a stylesheet has been imported