*/
public void testInvalidMessageTable() throws Exception
{
try
{
MessageTable table = new MessageTable();
m_parser.initializeMessageTable(table);
fail();
}
catch (IntegrationException ex)
{
}
try
{
// Create a zip file in memory
ZipMaker maker = new ZipMaker();
maker.addFile("a", "Contents of file a.");
maker.addDirectory("b/");
maker.addFile("b/c", "Contents of file c in directory b.");
MessageTable table = new MessageTable();
m_parser.parse(new StreamInput(maker.getInputStream()), table);
fail();
}
catch (IntegrationException ex)