Skip to content
Snippets Groups Projects
Commit a91382c2 authored by srosse's avatar srosse
Browse files

OO-2608: add a unit test for this special case (which doesn't look very special)

parent 8cd26ca6
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,11 @@ public class QTI12To21HtmlHandlerTest { ...@@ -44,7 +44,11 @@ public class QTI12To21HtmlHandlerTest {
{ "Hello world", "Hello world" }, { "Hello world", "Hello world" },
{ "First line <br/>Second line", "<p>First line <br/>Second line</p>" }, { "First line <br/>Second line", "<p>First line <br/>Second line</p>" },
{ "<hr />And some content", "<hr/><p>And some content</p>" }, { "<hr />And some content", "<hr/><p>And some content</p>" },
{ "Some content<br />&nbsp;<br /><strong>Strong content!</strong>", "<p>Some content<br/>\u00A0<br/><strong>Strong content!</strong></p>" } { "Some content<br />&nbsp;<br /><strong>Strong content!</strong>", "<p>Some content<br/>\u00A0<br/><strong>Strong content!</strong></p>" },
// https://jira.openolat.org/browse/OO-2608
{ "What are the two different approaches to set up special conditions?<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />",
"<p>What are the two different approaches to set up special conditions?<br/> <br/></p>"
}
}); });
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment