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

testNodesCreatedWithHttp() public method

    public function testNodesCreatedWithHttp()
    {
        $this->emptyDb();
        $result = $this->client->run('CREATE (n)', null, null, 'http');
        $summary = $result->summarize();
        $this->assertEquals(1, $summary->updateStatistics()->nodesCreated());
    }