@Test
  public void testGetConfiguration() {

    InMemoryClient client = new InMemoryClient(new InMemoryRoutingContext(), RecipientKind.DM);
    Map<String, String> conf = client.getConfiguration();

    Assert.assertEquals(1, conf.size());
    Assert.assertEquals(
        MessagingConstants.FACTORY_IN_MEMORY, conf.get(MessagingConstants.MESSAGING_TYPE_PROPERTY));
  }