I am XSLT developer and now a days I got an error on written test case using XSpec. This is the test case I wrote
<x:scenario label="Test Line Break">
<x:context select="//name-list/name/surname/ini">
<name-list>
<name>
<surname>
test line break
</surname>
<ini>test initials</ini>
</name>
</name-list>
</x:context>
<x:expect>
<surname type="...">test line break <ini>test initials</ini></surname>
</x:expect>
</x:scenario>
This test case is for removing line break of the elements before <ini>
tag,but when I ran the test case it is said that <ini>
tag is not processed.
How can I resolve this?Please help..
Thanks..