@Test
public void testContainerFormat()
{
IContainerFormat defaultVal = null;
ISimpleMediaFile obj = new SimpleMediaFile();
assertEquals("unexpected default", defaultVal, obj.getContainerFormat());
IContainerFormat format = IContainerFormat.make();
assertNotNull(format);
format.setInputFormat("flv");
assertNotNull(format.getInputFormatLongName());
assertTrue(format.getInputFormatLongName().length()>0);
obj.setContainerFormat(format);
assertEquals(format.getInputFormatLongName(), obj.getContainerFormat().getInputFormatLongName());
}