@Test
public void testPrependId() throws Exception
{
HtmlFormTag htmlFormTag = new HtmlFormTag();
htmlFormTag.setPrependId(new LiteralValueExpression(false));
HtmlForm htmlForm = new HtmlForm();
htmlFormTag.setProperties(htmlForm);
Assert.assertEquals(false, htmlForm.isPrependId());
}