All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tests.core.let-scope-rule-01.xml Maven / Gradle / Ivy

The newest version!
<testcase xmlns="tag:[email protected],2019:Schematron:Testsuite" expect="valid" id="let-scope-rule-01">
  <label>Rule-variable is scoped to the rule</label>
  <reference>ISO Schematron 2016: Section 3.26</reference>
  <documents>
    <primary filename="document.xml">
      <document xmlns=""/>
    </primary>
  </documents>
  <schemas>
    <sch:schema xmlns:sch="http://purl.oclc.org/dsdl/schematron">
      <sch:pattern>
        <sch:rule context="/">
          <sch:let name="foo" value="1"/>
          <sch:assert test="$foo = 1"/>
        </sch:rule>
        <sch:rule context="*">
          <sch:let name="foo" value="0"/>
          <sch:assert test="$foo = 0"/>
        </sch:rule>
      </sch:pattern>
    </sch:schema>
  </schemas>
</testcase>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy