|
18 | 18 | */
|
19 | 19 | package org.neo4j.driver.integration;
|
20 | 20 |
|
21 |
| -import java.util.Arrays; |
22 |
| -import java.util.LinkedList; |
23 |
| -import java.util.List; |
24 |
| -import java.util.concurrent.CountDownLatch; |
25 |
| -import java.util.concurrent.TimeUnit; |
26 |
| - |
27 | 21 | import org.junit.After;
|
28 | 22 | import org.junit.Rule;
|
29 | 23 | import org.junit.Test;
|
30 | 24 | import org.junit.runner.RunWith;
|
31 | 25 | import org.junit.runners.Parameterized;
|
32 | 26 |
|
| 27 | +<<<<<<< Updated upstream:driver/src/test/java/org/neo4j/driver/integration/ConnectionPoolIT.java |
33 | 28 | import org.neo4j.driver.Driver;
|
34 | 29 | import org.neo4j.driver.GraphDatabase;
|
35 | 30 | import org.neo4j.driver.Session;
|
36 | 31 | import org.neo4j.driver.exceptions.ClientException;
|
37 | 32 | import org.neo4j.driver.exceptions.DatabaseException;
|
38 | 33 | import org.neo4j.driver.util.TestNeo4j;
|
| 34 | +======= |
| 35 | +import java.util.LinkedList; |
| 36 | +import java.util.concurrent.CountDownLatch; |
| 37 | +import java.util.concurrent.TimeUnit; |
| 38 | + |
| 39 | +import org.neo4j.driver.v1.Driver; |
| 40 | +import org.neo4j.driver.v1.GraphDatabase; |
| 41 | +import org.neo4j.driver.v1.Session; |
| 42 | +import org.neo4j.driver.v1.exceptions.ClientException; |
| 43 | +import org.neo4j.driver.v1.exceptions.DatabaseException; |
| 44 | +import org.neo4j.driver.v1.util.TestNeo4j; |
| 45 | +>>>>>>> Stashed changes:driver/src/test/java/org/neo4j/driver/v1/integration/ConnectionPoolIT.java |
39 | 46 |
|
40 | 47 | import static junit.framework.TestCase.fail;
|
41 | 48 |
|
42 |
| -@RunWith(Parameterized.class) |
43 | 49 | public class ConnectionPoolIT
|
44 | 50 | {
|
45 | 51 | @Rule
|
46 | 52 | public TestNeo4j neo4j = new TestNeo4j();
|
47 | 53 | private Driver driver;
|
48 | 54 | private SessionGrabber sessionGrabber;
|
49 | 55 |
|
50 |
| - @Parameterized.Parameters |
51 |
| - public static List<Object[]> data() { |
52 |
| - return Arrays.asList( new Object[8][0] ); |
53 |
| - } |
54 | 56 | @Test
|
55 | 57 | public void shouldRecoverFromDownedServer() throws Throwable
|
56 | 58 | {
|
|
0 commit comments