GraphAware\Neo4j\Client\Tests\Integration\ClientSetupIntegrationTest::testHttpDriverIsUsedForConnection PHP Method

testHttpDriverIsUsedForConnection() public method

    public function testHttpDriverIsUsedForConnection()
    {
        $client = ClientBuilder::create()->addConnection('default', 'http://localhost:7474')->build();
        $connection = $client->getConnectionManager()->getConnection('default');
        $this->assertInstanceOf(HttpDriver::class, $connection->getDriver());
    }