|
22 | 22 | use Laudis\Neo4j\Contracts\TransactionInterface;
|
23 | 23 | use Laudis\Neo4j\Databags\Statement;
|
24 | 24 | use Laudis\Neo4j\Exception\Neo4jException;
|
25 |
| -use Laudis\Neo4j\Tests\Helpers\TestHelper; |
26 | 25 | use PHPUnit\Framework\TestCase;
|
27 | 26 |
|
28 | 27 | final class ClientIntegrationTest extends TestCase
|
@@ -72,7 +71,6 @@ public function testEqualEffect(): void
|
72 | 71 |
|
73 | 72 | public function testAvailabilityFullImplementation(): void
|
74 | 73 | {
|
75 |
| - TestHelper::skipIfUnsupportedVersion('cluster', __CLASS__); |
76 | 74 | $results = $this->client->getDriver('cluster')
|
77 | 75 | ->createSession()
|
78 | 76 | ->beginTransaction()
|
@@ -109,8 +107,6 @@ public function testTransactionFunction(): void
|
109 | 107 | */
|
110 | 108 | public function testValidRun(string $alias): void
|
111 | 109 | {
|
112 |
| - TestHelper::skipIfUnsupportedVersion($alias, __CLASS__); |
113 |
| - |
114 | 110 | $response = $this->client->run(<<<'CYPHER'
|
115 | 111 | MERGE (x:TestNode {test: $test})
|
116 | 112 | WITH x
|
@@ -148,8 +144,6 @@ public function testInvalidRun(string $alias): void
|
148 | 144 | */
|
149 | 145 | public function testValidStatement(string $alias): void
|
150 | 146 | {
|
151 |
| - TestHelper::skipIfUnsupportedVersion($alias, __CLASS__); |
152 |
| - |
153 | 147 | $response = $this->client->runStatement(
|
154 | 148 | Statement::create(<<<'CYPHER'
|
155 | 149 | MERGE (x:TestNode {test: $test})
|
@@ -191,8 +185,6 @@ public function testInvalidStatement(string $alias): void
|
191 | 185 | */
|
192 | 186 | public function testStatements(string $alias): void
|
193 | 187 | {
|
194 |
| - TestHelper::skipIfUnsupportedVersion($alias, __CLASS__); |
195 |
| - |
196 | 188 | $params = ['test' => 'a', 'otherTest' => 'b'];
|
197 | 189 | $response = $this->client->runStatements([
|
198 | 190 | Statement::create(<<<'CYPHER'
|
@@ -248,8 +240,6 @@ public function testInvalidStatements(string $alias): void
|
248 | 240 | */
|
249 | 241 | public function testMultipleTransactions(string $alias): void
|
250 | 242 | {
|
251 |
| - TestHelper::skipIfUnsupportedVersion($alias, __CLASS__); |
252 |
| - |
253 | 243 | $x = $this->client->beginTransaction(null, $alias);
|
254 | 244 | $y = $this->client->beginTransaction(null, $alias);
|
255 | 245 | self::assertNotSame($x, $y);
|
|
0 commit comments