assertTrue("Node should be a body tag", node[0] instanceof BodyTag);
BodyTag body = (BodyTag)node[0];
assertTrue("Node should have one child", 1 == body.getChildCount ());
assertTrue("Child should be a script tag", body.getChild (0) instanceof ScriptTag);
// Check the data in the script tag
ScriptTag scriptTag = (ScriptTag)body.getChild (0);
String s = scriptTag.getScriptCode();
assertStringEquals("Expected Script Code",testHTML2,s);
}