Fxmlrpc\AbstractDecoratorTest::testMulticallMethodWrapped PHP Method

testMulticallMethodWrapped() public method

    public function testMulticallMethodWrapped()
    {
        $this->wrapped->expects($this->once())->method('multicall')->will($this->returnValue('m'));
        $this->assertSame('m', $this->decorator->multicall());
    }