Location location = new Location(1234, "Unit City");
User user = new User("Unit", "Test", "UnitTest", "1234", "Unit@Test.com", "123456",
location, new Date(), UUID.randomUUID().toString().replace("-", ""));
Location from = new Location(8190, "Birkfeld");
Location to = new Location(8010, "Graz");
Waypoint wp = new Waypoint(from, to, user, "", true);
Trip t = new Trip(user, new Date(), 4, wp, "Copyright (C) Google");
return t;
}