public function testINVALIDConfiguration()
 {
     $client = new PhpOrient();
     $client->getTransport();
     $this->setExpectedException('\\PhpOrient\\Exceptions\\SocketException', 'Can not initialize a connection ' . 'without connection parameters');
     $client->execute('connect');
 }