ASIHTTPRequestTests.h
710 Bytes
//
// ASIHTTPRequestTests.h
// asi-http-request
//
// Created by Ben Copsey on 01/08/2008.
// Copyright 2008 All-Seeing Interactive. All rights reserved.
//
#import "GHUnit.h"
@interface ASIHTTPRequestTests : GHTestCase {
float progress;
}
- (void)testBasicDownload;
- (void)testTimeOut;
- (void)testRequestMethod;
- (void)testUploadContentLength;
- (void)testDownloadContentLength;
- (void)testFileDownload;
- (void)testDownloadProgress;
- (void)testUploadProgress;
- (void)testCookies;
- (void)testBasicAuthentication;
- (void)testDigestAuthentication;
- (void)testNTLMAuthentication;
- (void)testCharacterEncoding;
- (void)testCompressedResponse;
- (void)testCompressedResponseDownloadToFile;
@end