@@ -214,26 +214,26 @@ public function testCommitValidFilledWithInvalidStatement(): void
214
214
public function testCommitInvalid (): void
215
215
{
216
216
$ this ->markTestSkipped ('Skipped due to ConnectionTimeoutException ' );
217
- $ tsx = $ this ->getSession ()->beginTransaction ();
218
- $ tsx ->commit ();
219
-
220
- self ::assertTrue ($ tsx ->isFinished ());
221
- self ::assertFalse ($ tsx ->isRolledBack ());
222
- self ::assertTrue ($ tsx ->isCommitted ());
223
-
224
- $ this ->expectException (Neo4jException::class);
225
- $ tsx ->commit ();
217
+ // $tsx = $this->getSession()->beginTransaction();
218
+ // $tsx->commit();
219
+ //
220
+ // self::assertTrue($tsx->isFinished());
221
+ // self::assertFalse($tsx->isRolledBack());
222
+ // self::assertTrue($tsx->isCommitted());
223
+ //
224
+ // $this->expectException(Neo4jException::class);
225
+ // $tsx->commit();
226
226
}
227
227
228
228
public function testRollbackValid (): void
229
229
{
230
230
$ this ->markTestSkipped ('Skipped due to ConnectionTimeoutException ' );
231
- $ tsx = $ this ->getSession ()->beginTransaction ();
232
- $ tsx ->rollback ();
233
-
234
- self ::assertTrue ($ tsx ->isFinished ());
235
- self ::assertTrue ($ tsx ->isRolledBack ());
236
- self ::assertFalse ($ tsx ->isCommitted ());
231
+ // $tsx = $this->getSession()->beginTransaction();
232
+ // $tsx->rollback();
233
+ //
234
+ // self::assertTrue($tsx->isFinished());
235
+ // self::assertTrue($tsx->isRolledBack());
236
+ // self::assertFalse($tsx->isCommitted());
237
237
}
238
238
239
239
public function testRollbackInvalid (): void
0 commit comments