JAVA-22364 Some adjustments in neo4j
This commit is contained in:
parent
52d3952ac3
commit
cfb75a2922
|
@ -18,6 +18,11 @@ import org.neo4j.driver.Driver;
|
|||
import org.neo4j.driver.Result;
|
||||
import org.neo4j.driver.Session;
|
||||
|
||||
|
||||
/**
|
||||
* To run this test you will need to have an instance of the docker running on your machine (Docker desktop - for Windows and Docker instance for linux)
|
||||
* After your docker instance is up run this test
|
||||
*/
|
||||
class Neo4JServerLiveTest {
|
||||
|
||||
private static Session session;
|
||||
|
|
|
@ -24,6 +24,10 @@ import org.neo4j.graphdb.RelationshipType;
|
|||
import org.neo4j.graphdb.Result;
|
||||
import org.neo4j.graphdb.Transaction;
|
||||
|
||||
/**
|
||||
* To run this test you will need to have an instance of the docker running on your machine (Docker desktop - for Windows and Docker instance for linux)
|
||||
* After your docker instance is up run this test
|
||||
*/
|
||||
public class Neo4jLiveTest {
|
||||
|
||||
private static GraphDatabaseService graphDb;
|
||||
|
|
|
@ -15,6 +15,10 @@ import org.neo4j.ogm.session.SessionFactory;
|
|||
import com.baeldung.neo4j.domain.Car;
|
||||
import com.baeldung.neo4j.domain.Company;
|
||||
|
||||
/**
|
||||
* To run this test you will need to have an instance of the docker running on your machine (Docker desktop - for Windows and Docker instance for linux)
|
||||
* After your docker instance is up run this test
|
||||
*/
|
||||
public class Neo4jOgmLiveTest {
|
||||
|
||||
private static SessionFactory sessionFactory;
|
||||
|
|
|
@ -39,7 +39,7 @@ public class TestContainersTestBase {
|
|||
|
||||
public static final String SYS_PROPERTY_NEO4J_PASSWORD = "NEO4J_OGM_NEO4J_PASSWORD";
|
||||
|
||||
public static final String DEFAULT_PASSWORD = "verysecret";
|
||||
public static final String DEFAULT_PASSWORD = "12345";
|
||||
|
||||
public static Neo4jContainer neo4jServer;
|
||||
|
||||
|
|
Loading…
Reference in New Issue