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

testNodesDeletedWithHttp() public method

    public function testNodesDeletedWithHttp()
    {
        $this->emptyDb();
        $this->client->run('CREATE (n)');
        $result = $this->client->run('MATCH (n) DETACH DELETE n', null, null, 'http');
        $this->assertEquals(1, $result->summarize()->updateStatistics()->nodesDeleted());
    }