public function testGetLastErrorGetsErrorFromConnection()
 {
     $this->connection->expects($this->once())->method('getLastError')->will($this->returnValue(5));
     $this->assertSame(5, Client::getLastError());
 }