fXmlRpc\Integration\AbstractCallClientIntegrationTest::testNegativeInteger PHP Method

testNegativeInteger() public method

public testNegativeInteger ( fXmlRpc\CallClientInterface $client )
$client fXmlRpc\CallClientInterface
    public function testNegativeInteger(CallClientInterface $client)
    {
        $result = -100;
        $this->assertSame($result, $client->call('system.echo', array($result)));
    }