diff options
author | Adrian Kummerländer | 2014-05-21 20:30:37 +0200 |
---|---|---|
committer | Adrian Kummerländer | 2014-05-21 20:30:37 +0200 |
commit | 283101c02a7e6a71f221fe731168e9b0096e3766 (patch) | |
tree | 8dfe46ba47aaad2edc66bfef14e45ac5864a7fb0 /test/read_xml_file | |
parent | 35334241ce4b76b1b1a66219ce938f27fdf39031 (diff) | |
download | InputXSLT-283101c02a7e6a71f221fe731168e9b0096e3766.tar InputXSLT-283101c02a7e6a71f221fe731168e9b0096e3766.tar.gz InputXSLT-283101c02a7e6a71f221fe731168e9b0096e3766.tar.bz2 InputXSLT-283101c02a7e6a71f221fe731168e9b0096e3766.tar.lz InputXSLT-283101c02a7e6a71f221fe731168e9b0096e3766.tar.xz InputXSLT-283101c02a7e6a71f221fe731168e9b0096e3766.tar.zst InputXSLT-283101c02a7e6a71f221fe731168e9b0096e3766.zip |
Added test case base template and improved transformer helper template
* test case base template contains the basic test case markup
** it was mostly created to include include-path resolution into the test cases
* improved transformer helper template by separating the external function call into its own variable
Diffstat (limited to 'test/read_xml_file')
-rw-r--r-- | test/read_xml_file/reference.xml | 2 | ||||
-rw-r--r-- | test/read_xml_file/transformation.xsl | 19 |
2 files changed, 5 insertions, 16 deletions
diff --git a/test/read_xml_file/reference.xml b/test/read_xml_file/reference.xml index d82dc9c..26b5f82 100644 --- a/test/read_xml_file/reference.xml +++ b/test/read_xml_file/reference.xml @@ -1,9 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <test_case> -<function_read_xml_file> <item>Hello 1</item> <item>Hello 2</item> <item>Hello 3</item> <item>Hello 4</item> -</function_read_xml_file> </test_case> diff --git a/test/read_xml_file/transformation.xsl b/test/read_xml_file/transformation.xsl index ba6fed1..e0a3794 100644 --- a/test/read_xml_file/transformation.xsl +++ b/test/read_xml_file/transformation.xsl @@ -6,21 +6,12 @@ exclude-result-prefixes="InputXSLT" > -<xsl:output - method="xml" - omit-xml-declaration="no" - encoding="UTF-8" - indent="yes" -/> +<xsl:include href="[testcase.xsl]"/> -<xsl:template match="/"> -<test_case> - <function_read_xml_file> - <xsl:for-each select="InputXSLT:read-xml-file('../common/test.txt')/tester/eintrag"> - <item><xsl:value-of select="."/></item> - </xsl:for-each> - </function_read_xml_file> -</test_case> +<xsl:template name="implementation"> + <xsl:for-each select="InputXSLT:read-xml-file('../common/test.txt')/tester/eintrag"> + <item><xsl:value-of select="."/></item> + </xsl:for-each> </xsl:template> </xsl:stylesheet> |