Can't connect to a testcontainer Neo4J instance?
问题 this is my test class: @Testcontainers @ReactiveDataNeo4jTest internal class RepositoryIT { @Container private val container = KNeo4jContainer.instance @Test fun `should answer with One`() { val boltUrl = container.getBoltUrl() GraphDatabase.driver( boltUrl, AuthTokens.basic("neo4j", "123456")) .use { driver -> driver.session().use { session -> val res = session.run("OPTIONAL MATCH(n) RETURN 1 AS value") val one = res.single().get("value").asInt() assertThat(one).isEqualTo(2) } } } } object