final InfoWindow info = map.getInfoWindow();
InfoWindowContent content = new InfoWindowContent("HelloMaps!");
content.setMaxContent("Hello Again Maps!");
content.setMaxTitle("Hello Maps Maximized");
info.open(map.getCenter(), content);
info.addInfoWindowRestoreEndHandler(new InfoWindowRestoreEndHandler() {
public void onRestoreEnd(InfoWindowRestoreEndEvent event) {
assertEquals(event.getSender(), info);
finishTest();
}