/**
* Publish should generally not rethrow exceptions, or it will cause a build job to fail at end.
*/
@Test
public void publishWithBadHostShouldNotRethrowExceptions() {
StandardHipChatService service = new StandardHipChatService("token", "room", "from");
service.setHost("hostvaluethatwillcausepublishtofail");
service.publish("message");
}