CoffeeFilter Test Report

Report generated on 06 Aug 2023 at 21:03 with CoffeeFilter version 3.2.1 (using CoffeeGrinder version 3.2.1) from a test suite dated 21 Jun 2022 (20 Jun 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.

Ambiguous inputs

01 Jun 2022 (09 May 2023)

Description

Tests provided by Steven Pemberton in December 2021, with corrections of 21 December. Reorganized by Norm Tovey-Walsh, February 2022.

ambiguous-without-marks

Created 09 May 2023 by ndw

Invisible XML Grammar
S = A, B, C | A, B, C . A = 'a' . B = 'b' . C = 'c' .

Test case: B-or-B

Repository URI: …/tests/ambiguous/test-catalog.xml

Created 09 May 2023 by ndw

Description

This grammar is ambiguous only if the processor does not remove duplicate rules. But there’s nothing in the specification that says a processor must.

Description

This grammar is ambiguous only if the processor does not remove duplicate rules. But there’s nothing in the specification that says a processor must.

Input string (3 characters)
abc
Expected results (one of)
<S xmlns:ixml="http://invisiblexml.org/NS" ixml:state="ambiguous">
   <A>a</A>
   <B>b</B>
   <C>c</C>
</S>
<S>
   <A>a</A>
   <B>b</B>
   <C>c</C>
</S>

Test report

PASS