Commit 1b55f0cc authored by Stephane Nicoll's avatar Stephane Nicoll

Merge branch '2.1.x'

parents 3febf56e d3218061
......@@ -18,10 +18,7 @@ package org.springframework.boot.test.autoconfigure.data.neo4j;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.rules.TestRule;
import org.junit.runner.Description;
import org.junit.runner.RunWith;
import org.junit.runners.model.Statement;
import org.neo4j.ogm.session.Session;
import org.testcontainers.containers.Neo4jContainer;
......@@ -50,19 +47,10 @@ import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
@DataNeo4jTest
public class DataNeo4jTestIntegrationTests {
@ClassRule
public static SkippableContainer<Neo4jContainer<?>> neo4j = new SkippableContainer<Neo4jContainer<?>>(
() -> new Neo4jContainer<>().withAdminPassword(null));
@ClassRule
public static TestRule skippableContainer = new TestRule() {
@Override
public Statement apply(Statement base, Description description) {
return neo4j.apply(base, description);
}
};
@Autowired
private Session session;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment