assertThat(logResponseStream(response), endsWith(snippet));
}
@Test
public void testDiff() throws DockerException {
ContainerConfig containerConfig = new ContainerConfig();
containerConfig.setImage("busybox");
containerConfig.setCmd(new String[] { "touch", "/test" });
ContainerCreateResponse container = dockerClient
.createContainer(containerConfig);
LOG.info("Created container: {}", container.toString());
assertThat(container.getId(), not(isEmptyString()));