*/
public void testSimple() throws Exception{
setUpScript("testUseBeanTag.jelly");
Script script = getJelly().compileScript();
getJellyContext().setVariable("test.simple",Boolean.TRUE);
script.run(getJellyContext(),getXMLOutput());
assertNotNull(getJellyContext().getVariable("foo"));
assertTrue(getJellyContext().getVariable("foo") instanceof Customer);
Customer customer = (Customer)(getJellyContext().getVariable("foo"));
assertEquals("name not set", "testing", customer.getName());
assertEquals("city not set", "sydney", customer.getCity());