public function testMulticallFactory()
 {
     $multicall = $this->client->multicall();
     $this->assertInstanceOf('fXmlRpc\\Multicall', $multicall);
     $this->assertNotSame($multicall, $this->client->multicall());
     $this->assertSame($this->client, $multicall->getClient());
 }