@Test()
  public void inspectContainer() throws DockerException {

    String containerName = "generated_" + new SecureRandom().nextInt();

    CreateContainerResponse container =
        dockerClient.createContainerCmd("busybox").withCmd("top").withName(containerName).exec();
    LOG.info("Created container {}", container.toString());
    assertThat(container.getId(), not(isEmptyString()));

    InspectContainerResponse containerInfo =
        dockerClient.inspectContainerCmd(container.getId()).exec();
    assertEquals(containerInfo.getId(), container.getId());
  }