Curl\CurlTest::testBasicHttpAuth PHP Метод

testBasicHttpAuth() публичный Метод

public testBasicHttpAuth ( )
    public function testBasicHttpAuth()
    {
        $data = array();
        $this->curl->get(self::TEST_URL . '/http_basic_auth.php', $data);
        $this->assertEquals('canceled', $this->curl->response);
        $username = 'myusername';
        $password = 'mypassword';
        $this->curl->setBasicAuthentication($username, $password);
        $this->curl->get(self::TEST_URL . '/http_basic_auth.php', $data);
        $this->assertEquals('{"username":"myusername","password":"mypassword"}', $this->curl->response);
    }