fXmlRpc\Transport\RecorderTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        parent::setUp();
        $this->transport = $this->getMock('fXmlRpc\\Transport\\TransportInterface');
        $this->recorder = new Recorder($this->transport);
        $this->client = new Client('http://foo.com', $this->recorder);
        $this->exception = new Exception();
    }