added unit tests for schema validation and a test for not wellformed XML.
[utils] / support / general / src / test / resources / org / wamblee / xml / reportToText.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3   <xsl:output method="text"/>
4   
5   <xsl:template match="report">
6      <xsl:text>Hello world!</xsl:text> 
7   </xsl:template>
8   
9 </xsl:stylesheet>