GraphAware\Neo4j\Client\Tests\Integration\StatisticsIntegrationTest::testRelationshipsCreatedWithHttp PHP Method

testRelationshipsCreatedWithHttp() public method

    public function testRelationshipsCreatedWithHttp()
    {
        $this->emptyDb();
        $result = $this->client->run('CREATE (n)-[:REL]->(x)', null, null, 'http');
        $this->assertEquals(1, $result->summarize()->updateStatistics()->relationshipsCreated());
    }