* @return result
* @throws PseudolocalizationException
*/
protected String runPreparsedHtml(PseudolocalizationPipeline pipeline)
throws PseudolocalizationException {
SimpleMessage msg = new SimpleMessage(Arrays.<MessageFragment>asList(
new SimpleTextFragment("Hello "),
new SimpleNonlocalizableTextFragment("<br>"),
new SimpleTextFragment(" there"))) { };
pipeline.localize(msg);
return msg.getText();
}