/*
  * 	public PublisherPreferencesResponse(Identification identification)
  */
 @Test
 public void createResponse() {
   PublisherPreferencesResponse response = new PublisherPreferencesResponse(IDENTIFICATION);
   assertNotNull("Identification is required", response.getIdentification());
   assertNotNull("Status is required", response.getStatus());
   assertNotNull("PublisherPreferences is required", response.getPublisherPreferences());
 }