diff options
Diffstat (limited to 'test/common')
-rw-r--r-- | test/common/testcase.xsl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/common/testcase.xsl b/test/common/testcase.xsl new file mode 100644 index 0000000..70bfa3a --- /dev/null +++ b/test/common/testcase.xsl @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsl:stylesheet + version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:InputXSLT="function.inputxslt.application" + exclude-result-prefixes="InputXSLT" +> + +<xsl:output + method="xml" + omit-xml-declaration="no" + encoding="UTF-8" + indent="yes" +/> + +<xsl:template match="/"> +<test_case> + <xsl:call-template name="implementation"/> +</test_case> +</xsl:template> + +</xsl:stylesheet> |