GraphAware\Neo4j\Client\Tests\Integration\ClientSetupIntegrationTest::testBoltDriverIsUsedForConnection PHP Méthode

testBoltDriverIsUsedForConnection() public méthode

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