Skip to content

Commit

Permalink
https://github.com/testcontainers/testcontainers-java/issues/2110#iss…
Browse files Browse the repository at this point in the history
…uecomment-618206131
  • Loading branch information
jglick committed Mar 8, 2021
1 parent 88d4834 commit d64e795
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/test/java/org/jenkinsci/plugins/saml/LiveTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,23 @@
import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.MatcherAssert.assertThat;
import org.junit.After;
import static org.junit.Assume.assumeTrue;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.Test;
import org.jvnet.hudson.test.JenkinsRule;
import org.jvnet.hudson.test.MockAuthorizationStrategy;
import org.jvnet.hudson.test.RealJenkinsRule;
import org.testcontainers.DockerClientFactory;
import org.testcontainers.containers.GenericContainer;
import org.testcontainers.utility.MountableFile;

public class LiveTest {

@BeforeClass public static void requiresDocker() {
assumeTrue(DockerClientFactory.instance().isDockerAvailable());
}

@Rule public RealJenkinsRule rr = new RealJenkinsRule();

@SuppressWarnings("rawtypes")
Expand Down

0 comments on commit d64e795

Please sign in to comment.