summaryrefslogtreecommitdiff
path: root/tests/unit/Web/UI/WebControls/data
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Web/UI/WebControls/data')
-rw-r--r--tests/unit/Web/UI/WebControls/data/hello.xml2
-rw-r--r--tests/unit/Web/UI/WebControls/data/hello.xsl5
2 files changed, 7 insertions, 0 deletions
diff --git a/tests/unit/Web/UI/WebControls/data/hello.xml b/tests/unit/Web/UI/WebControls/data/hello.xml
new file mode 100644
index 00000000..9f8b12ee
--- /dev/null
+++ b/tests/unit/Web/UI/WebControls/data/hello.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0"?>
+<greeting>Hello World!</greeting>
diff --git a/tests/unit/Web/UI/WebControls/data/hello.xsl b/tests/unit/Web/UI/WebControls/data/hello.xsl
new file mode 100644
index 00000000..f0664464
--- /dev/null
+++ b/tests/unit/Web/UI/WebControls/data/hello.xsl
@@ -0,0 +1,5 @@
+<?xml version="1.0"?>
+<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+<xsl:output method="xml" omit-xml-declaration="yes"/>
+<xsl:template match="/"><b><xsl:value-of select="greeting"/></b></xsl:template>
+</xsl:transform>