We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74430cf commit f5a1062Copy full SHA for f5a1062
tests/Unit/Neo4jQueryAPIUnitTest.php
@@ -3,6 +3,7 @@
3
namespace Neo4j\QueryAPI\Tests\Unit;
4
5
use GuzzleHttp\Client;
6
+use GuzzleHttp\Exception\GuzzleException;
7
use GuzzleHttp\Handler\MockHandler;
8
use GuzzleHttp\HandlerStack;
9
use GuzzleHttp\Psr7\Response;
@@ -39,6 +40,9 @@ public function testCorrectClientSetup(): void
39
40
$this->assertEquals('application/json', $config['headers']['Content-Type']);
41
}
42
43
+ /**
44
+ * @throws GuzzleException
45
+ */
46
public function testRunSuccess(): void
47
{
48
@@ -56,7 +60,7 @@ public function testRunSuccess(): void
56
60
57
61
$result = $neo4jQueryAPI->run($cypherQuery, []);
58
62
59
- print_r($result);
63
+ // print_r($result);
64
65
$this->assertEquals(['hello' => 'world'], $result);
66
0 commit comments