xsl 的输出是“xml”
有没有办法我们可以获得一个示例 XML 并将其与 XSLT 的输出进行比较?有人可以给我一个关于如何为下面编写单元测试的例子。
<xsl:variable name="variableA">
<xsl:choose>
<xsl:when test="normalize-space(field1)='1' and $variableB and
(translate(normalize-space($variableC), $ucletters,$lcletters)='x' or
translate(normalize-space($variableC), $ucletters,$lcletters)='y')">
<xsl:text>5</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>6</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>