*/
public void testCData() throws Exception {
Jelly jelly = new Jelly();
jelly.setScript("file:src/test/org/apache/commons/jelly/test/xml/testCData.jelly");
Script script = jelly.compileScript();
JellyContext context = new JellyContext();
script.run(context, XMLOutput.createDummyXMLOutput());
String output = (String) context.getVariable("foo");
assertTrue("'foo' is not null", output != null);
String golden = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
golden += "<!DOCTYPE foo [\n";
golden += " <!ELEMENT foo (#PCDATA)>\n";