public function testGetConnectionParams()
 {
     // verify that (deprecated) getConnectionParams continues to work
     $this->assertSame(array('host' => '127.0.0.1', 'port' => 9307, 'socket' => null), $this->connection->getParams());
     // create a new connection and get info
     $this->connection->setParams(array('host' => '127.0.0.1', 'port' => 9308));
     $this->assertSame(array('host' => '127.0.0.1', 'port' => 9308, 'socket' => null), $this->connection->getParams());
 }