.userAgentReaperTimeout(1000L)
.ackInterval(60000L)
.password("test")
.build();
assertThat(config.endpointUrl(), equalTo("http://127.0.0.1:7777/update"));
assertThat(config.endpointPrefix(), equalTo("/update"));
assertThat(config.userAgentReaperTimeout(), is(1000L));
assertThat(config.acknowledmentInterval(), is(60000L));
}
@Test