private final CityEntity city = new CityEntity("4234", "1-jflk3j4odj92p3oem1239jke0329kk345", "Oakhurst", 2829, "1) This is a city\n2)It's really cool");
private final LocationEntity location = new LocationEntity("1122", "1-03ba856139647f1ed4694ceb1fe21751", "North", "Toronto", "1) I don't know where this is\n2) No one really even cares.");
public void createLocationForPost() {
PostEntityRequest request = new PostEntityRequest(null, "location", location);
String json = strategy.createJsonForPost(request);
Assert.assertEquals(
removeLineSeparators(json),
removeLineSeparators(LOCATION_JSON_POST));