My test description have a '&'
then the XML output produced by jstest is invalid, the '&' is not correctly escaped in an entity.
Example : is my test description is 'should do so when A & B', the produced XML will contain :
<testcase classname="ClassName" name="should do so when A & B" time="0.042" />
It should be :
<testcase classname="ClassName" name="should do so when A & B" time="0.042" />
Please escape string inserted in XML with XMl entities !
If
Example : is my test description is 'should do so when A & B', the produced XML will contain :
<testcase classname="ClassName" name="should do so when A & B" time="0.042" />
It should be :
<testcase classname="ClassName" name="should do so when A & B" time="0.042" />
Please escape string inserted in XML with XMl entities !