Description
If I have the following infoset:
infoset: <tns:matrixString xmlns:tns="http://www.example.org/example1/"> <tns:row> <tns:cell> loooooooooooooooooooooooooooooooooooooooooong worddddddddddddddddddddddddddddddddd </tns:cell> </tns:row> </tns:matrixString>
and I set wrapLength to 10, I would expect the infoset to be broken up more. However I get this:
infoset: <tns:matrixString xmlns:tns="http://www.example.org/example1/"><tns:row><tns:cell>loooooooooooooooooooooooooooooooooooooooooong worddddddddddddddddddddddddddddddddd</tns:cell></tns:row></tns:matrixString>
Also, if I set it to a very large number (90000) I would expect it to not wrap at all, but I get this:
infoset: <tns:matrixString xmlns:tns="http://www.example.org/example1/"> <tns:row> <tns:cell>loooooooooooooooooooooooooooooooooooooooooong worddddddddddddddddddddddddddddddddd</tns:cell> </tns:row> </tns:matrixString>
I tried setting it to the length of "long", thinking it would put "word" on a new line, but I get this:
infoset: <tns:matrixString xmlns:tns="http://www.example.org/example1/"> <tns:row> <tns:cell> loooooooooooooooooooooooooooooooooooooooooong worddddddddddddddddddddddddddddddddd </tns:cell> </tns:row> </tns:matrixString>