@Test
public void escape_directive_default_interplate() throws Exception {
getEngine("with_defaultEscape", factory);
TemplateContext ctx = new MappedTemplateContext();
ctx.put("count", new Counter());
ctx.put("object", new MyRenderable("<world name=\"中国\" />"));
String content = templateService.getText("escape/test_escape_interpolation.vm", ctx);
assertThat(content, containsString("1. <world name="中国" />"));