/**
   *
   *
   * <ul>
   *   <li>No <code>"OnewayRequest"</code> client header
   *   <li>Calling {@link ITestService#addTestPojo(TestPojo)} which returns <code>void</code> and is
   *       <b>not</b> annotated with {@link Oneway}.
   * </ul>
   *
   * Note: i guess receiving 204 is fine here. Still, the client has to wait until the server
   * implementation returned in order to receive this response.
   */
  @Test
  public void withoutHeaderTwowayVoidMethod() {
    final ITestService client = createJmsClient(false);
    final TestPojo testPojo = createTestPojo(123);

    client.addTestPojoReturnsVoid(testPojo);
    assertThat(WebClient.client(client).getResponse().getStatus(), is(204));
  }