JAVA-22364 Some adjustments in neo4j

This commit is contained in:
timis1 2023-06-16 09:35:13 +03:00 committed by n
parent 52d3952ac3
commit cfb75a2922
4 changed files with 14 additions and 1 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;