@Test
public void providesAClientToAccessTheReplicaURLGivenAHttpReplica() throws Exception {
HttpRaftClientProvider provider = new HttpRaftClientProvider();
RaftClient client = provider.get(new HttpReplica(new URI("http://localhost:1234")));
assertThat(client).isInstanceOf(BargeJaxRsClient.class);
}