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

testBoltDriverIsUsedForConnection() public method

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