iXML Community Group Test Suite
23 Oct 2023 (22 Nov 2023)
Top-level catalog for tests in the iXML Community Group Test Suite.
Tests have been contributed from several sources, but the core of the test collection are the tests contributed by Steven Pemberton in December 2021.
Correct Syntax tests
01 Jun 2022
Syntax tests for grammar features. These tests all make assertions about grammars that are syntactically correct.
alts
Created 26 Mar 2022 by ndw
Invisible XML Grammar
S: ('a'; 'b'; 'c').
Test case: Grammar test
Repository URI: …/tests/syntax/catalog-of-correct-tests.xml
Expected result
<ixml>
<rule name="S">
<alt>
<alts>
<alt>
<literal string="a"/>
</alt>
<alt>
<literal string="b"/>
</alt>
<alt>
<literal string="c"/>
</alt>
</alts>
</alt>
</rule>
</ixml>