PopTest\Curl\CurlTest::testResponse PHP Method

testResponse() public method

public testResponse ( )
    public function testResponse()
    {
        $c = new Curl('http://www.popphp.org/version', array(CURLOPT_HEADER => false, CURLOPT_RETURNTRANSFER => true));
        $c->execute();
        $this->assertEquals('1.7.0', $c->getResponse());
    }