Exemple #1
0
 public function testConfigure()
 {
     $client = new Client();
     $client->configure(['port' => 2424, 'transport' => 'binary']);
     $transport = $client->getTransport();
     $this->assertInstanceOf('OrientDB\\Protocols\\Binary\\Transport', $transport);
 }