* No input symbols, no informal parameters.
*/
public void testMinimalRender()
{
IScriptSource source = newScriptSource();
IScript script = newScript();
PageRenderSupport support = newPageRenderSupport();
IRequestCycle cycle = newCycle(false);
IMarkupWriter writer = newWriter();
Resource scriptLocation = newResource();
IRender body = newRender();
IComponent container = newComponent();
String scriptPath = "MyScript.script";
Script component = (Script) newInstance(Script.class, new Object[]
{ "specification", new ComponentSpecification(), "container", container, "scriptSource",
source, "scriptPath", scriptPath });
trainGetPageRenderSupport(cycle, support);
trainGetScriptLocation(container, scriptPath, scriptLocation);
trainGetScript(source, scriptLocation, script);
script.execute(cycle, support, new HashMap());
body.render(writer, cycle);
replayControls();