Test case rmt-e2e-20: com.bluecast.xml.Piccolo Failed

Test case rmt-e2e-20: com.bluecast.xml.Piccolo Failed

Tokens, after normalization, must be separated by space, not other whitespace characters

<!DOCTYPE foo [
<!ELEMENT foo ANY>
<!ATTLIST foo bar NMTOKENS #IMPLIED>
]>
<foo bar="abc&#9;xyz"/>
Expected resultActual result for com.bluecast.xml.Piccolo
<?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
    <startDocument/>
    <startElement>
        <namespaceURI/>
        <localName>foo</localName>
        <qualifiedName>foo</qualifiedName>
        <attributes>
            <attribute>
                <namespaceURI/>
                <localName>bar</localName>
                <qualifiedName>bar</qualifiedName>
                <value>abc\txyz</value>
                <type>NMTOKENS</type>
            </attribute>
        </attributes>
    </startElement>
    <endElement>
        <namespaceURI/>
        <localName>foo</localName>
        <qualifiedName>foo</qualifiedName>
    </endElement>
    <endDocument/>
</ConformanceResults>
<?xml version="1.0" encoding="UTF-8"?>
<ConformanceResults>
    <startDocument/>
    <startElement>
        <namespaceURI/>
        <localName>foo</localName>
        <qualifiedName>foo</qualifiedName>
        <attributes>
            <attribute>
                <namespaceURI/>
                <localName>bar</localName>
                <qualifiedName>bar</qualifiedName>
                <value>abc\sxyz</value>
                <type>NMTOKENS</type>
            </attribute>
        </attributes>
    </startElement>
    <endElement>
        <namespaceURI/>
        <localName>foo</localName>
        <qualifiedName>foo</qualifiedName>
    </endElement>
    <endDocument/>
</ConformanceResults>