CoffeeFilter Test Report

Report generated on 13 Jul 2026 at 17:26 with version 3.3.14 from a test suite dated 23 Oct 2023 (22 Nov 2023).

Description

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.

Misc tests

13 Jun 2022

Description

Grammars 1-20.

Tests compiled manually in 2018 and 2019, re-packaged in 2022.

Moved to ixml test collection, June 2022.

sample.grammar.14

Created 08 Feb 2022 by cmsmcq

Updated 19 Feb 2022 by cmsmcq

Corrected typo

Description

From Grune and Jacobs p. 203, discussion of "parsing by searching".

Invisible XML Grammar

	S: E.
	E: F; E, Q, F.
	F: "a".
	Q: "+"; "-".
      

Test case: g14c07

Repository URI: …/tests/misc/misc-001-020-catalog.xml

Created 19 Jan 2022 by cmsmcq

Input string (5 characters)
a+a-a
Expected result
<S xmlns:ixml="http://invisiblexml.org/NS"
   xmlns:tc="https://github.com/invisibleXML/ixml/test-catalog">
   <E>
      <E>
         <E>
            <F>a</F>
         </E>
         <Q>+</Q>
         <F>a</F>
      </E>
      <Q>-</Q>
      <F>a</F>
   </E>
</S>

Test report

PASS