/** Test method for {@link X509Authenticator#clone()} . */
  @Test
  public void testClone() {
    final X509Authenticator auth = new X509Authenticator();

    final X509Authenticator clone = auth.clone();

    assertThat(clone, not(sameInstance(auth)));
    assertThat(clone.myResults, not(sameInstance(auth.myResults)));
  }