@@ -399,43 +399,43 @@ public function testSimpleTimeout(string $alias): void
399
399
}
400
400
}
401
401
402
- /**
403
- * @dataProvider connectionAliases
404
- */
405
- public function testDiscardAfterTimeout (string $ alias ): void
406
- {
407
- if (str_starts_with ($ alias , 'http ' )) {
408
- self ::markTestSkipped ('Http does not support timeouts at the moment ' );
409
- }
410
-
411
- $ this ->expectException (Neo4jException::class);
412
-
413
- $ result = $ this ->getClient ()
414
- ->getDriver ($ alias )
415
- ->createSession ()
416
- ->run ('UNWIND range(1, 1000000) AS x MERGE (:Number {value: x}) ' , [], TransactionConfiguration::default ()->withTimeout (150 ));
417
-
418
- unset($ result );
419
- }
420
-
421
- /**
422
- * @dataProvider connectionAliases
423
- *
424
- * @doesNotPerformAssertions
425
- */
426
- public function testTimeoutNoReturn (string $ alias ): void
427
- {
428
- if (str_starts_with ($ alias , 'http ' )) {
429
- self ::markTestSkipped ('Http does not support timeouts at the moment ' );
430
- }
431
-
432
- $ result = $ this ->getClient ()
433
- ->getDriver ($ alias )
434
- ->createSession ()
435
- ->run ('CALL apoc.util.sleep(2000000) ' , [], TransactionConfiguration::default ()->withTimeout (150 ));
436
-
437
- unset($ result );
438
- }
402
+ // /**
403
+ // * @dataProvider connectionAliases
404
+ // */
405
+ // public function testDiscardAfterTimeout(string $alias): void
406
+ // {
407
+ // if (str_starts_with($alias, 'http')) {
408
+ // self::markTestSkipped('Http does not support timeouts at the moment');
409
+ // }
410
+ //
411
+ // $this->expectException(Neo4jException::class);
412
+ //
413
+ // $result = $this->getClient()
414
+ // ->getDriver($alias)
415
+ // ->createSession()
416
+ // ->run('UNWIND range(1, 1000000) AS x MERGE (:Number {value: x})', [], TransactionConfiguration::default()->withTimeout(150));
417
+ //
418
+ // unset($result);
419
+ // }
420
+
421
+ // /**
422
+ // * @dataProvider connectionAliases
423
+ // *
424
+ // * @doesNotPerformAssertions
425
+ // */
426
+ // public function testTimeoutNoReturn(string $alias): void
427
+ // {
428
+ // if (str_starts_with($alias, 'http')) {
429
+ // self::markTestSkipped('Http does not support timeouts at the moment');
430
+ // }
431
+ //
432
+ // $result = $this->getClient()
433
+ // ->getDriver($alias)
434
+ // ->createSession()
435
+ // ->run('CALL apoc.util.sleep(2000000)', [], TransactionConfiguration::default()->withTimeout(150));
436
+ //
437
+ // unset($result);
438
+ // }
439
439
440
440
/**
441
441
* @dataProvider connectionAliases
0 commit comments