map = c.newMap();
assertTrue("the file of a new map should be null", map.getFile() == null);
}
public void test_Map_close() {
Map originalMap = node.getMap();
map = c.newMap();
map.getRoot().createChild("child 1");
assertFalse("a new map should have been opened", originalMap.equals(map));
map.close(true, false);
assertEquals("the original map should be selected again", originalMap.getName(), c.getSelected().getMap()
.getName());
// let tearDown() some work to do...
map = c.newMap();
}