mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-19 14:50:07 +03:00
* schematron.c xmllint.c: fixing the loop bug, fixing schematron text error rendering * Makefile.am result/schematron/* test/schematron/zvon1*.sct: started integrating within "make tests" Daniel
24 lines
956 B
Plaintext
24 lines
956 B
Plaintext
<schema xmlns="http://www.ascc.net/xml/schematron" >
|
|
<pattern name="Print both cases">
|
|
<rule context="AAA">
|
|
<assert test="BBB">BBB element is missing.</assert>
|
|
<report test="BBB">BBB element is present.</report>
|
|
<assert test="@name">AAA misses attribute name.</assert>
|
|
<report test="@name">AAA contains attribute name.</report>
|
|
</rule>
|
|
</pattern>
|
|
<pattern name="Print positive result only">
|
|
<rule context="AAA">
|
|
<report test="BBB">BBB element is present.</report>
|
|
<report test="@name">AAA contains attribute name.</report>
|
|
</rule>
|
|
</pattern>
|
|
<pattern name="Print negative result only">
|
|
<rule context="AAA">
|
|
<assert test="BBB">BBB element is missing.</assert>
|
|
<assert test="@name">AAA misses attribute name.</assert>
|
|
</rule>
|
|
</pattern>
|
|
</schema>
|
|
|