/**
* @tests java.util.jar.Manifest#clear()
*/
public void testClear() {
Manifest m = getManifest(ATT_JAR_NAME);
m.clear();
assertTrue("Should have no entries", m.getEntries().isEmpty());
assertTrue("Should have no main attributes", m.getMainAttributes()
.isEmpty());
}