@Test
  @Ignore("Must be manually tested")
  public void createConnection() throws IOException {
    Connection connection = factory.createConnection("localhost", 2775);

    try {
      assertNotNull(connection);
      assertTrue(connection.isOpen());
    } finally {
      if (connection != null) {
        connection.close();
      }
    }
  }