currentPrice=booking.getCurrentPrice();
assertEquals(2, currentPrice.size());
for(Map.Entry<Typology, ArrayList<Price>> valore: currentPrice.entrySet() ){
Typology key= (Typology) valore.getKey();
assertEquals(key.getBeds(), (i+1));
ArrayList<Price> prices= currentPrice.get(key);
assertEquals(1,prices.size());
date= CalendarUtils.GetDateAsString(prices.get(0).getCalendarDate());