Date endDate = dateFormat.parse("03/26/2014");
List<String> topics = new ArrayList<>();
topics.add("Google");
topics.add("Cloud");
topics.add("Platform");
ConferenceForm conferenceForm = new ConferenceForm(
NAME, DESCRIPTION, topics, CITY, startDate, endDate, CAP);
Conference conference = conferenceApi.createConference(user, conferenceForm);
conference = conferenceApi.getConference(conference.getWebsafeKey());
// Check the return value.
assertEquals(NAME, conference.getName());