How to insert line breaks dbunit dataset
How to insert line break in dbunit dataset? Like this:
<user id="1"
story="first line
second line
third line"/>
If I do it in this way field story in db appears divided by spaces only but I need a 开发者_JS百科line break.
Upps, I found solution:
<user id="1"
story="first line second line third line"/>
精彩评论