public void setUp() throws Exception {
departure = new Date();
mockTripCreator = new User("Trip","Creator","","","","",null,null, "");
fromLocation = new Location(1,1000,"City1");
toLocation = new Location(2,2000,"City2");
mockTripWaypoint = new Waypoint(1,fromLocation,toLocation,mockTripCreator,"",true);
mockTrip4Seats = new Trip(1,mockTripCreator,departure,4,mockTripWaypoint,"");
mockTripBooker = new User("Trip", "Booker", "", "", "", "", null, null, "");
mockBookerWaypointInactive = new Waypoint(fromLocation,toLocation,mockTripBooker,"",false);
mockJsfUtil = EasyMock.createMock(JsfUtil.class);
mockGoogleUtil = EasyMock.createMock(GoogleUtil.class);
mockTripDAO = EasyMock.createMock(TripDAO.class);
mockWaypointDAO = EasyMock.createMock(WaypointDAO.class);
mockPointDAO = EasyMock.createMock(PointDAO.class);