Statistics
| Branch: | Revision:

root / asi-http-request-with-pithos / Classes / Tests / ProxyTests.h @ be116d22

History | View | Annotate | Download (756 Bytes)

1
//
2
//  ProxyTests.h
3
//  Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest
4
//
5
//  Created by Ben Copsey on 02/08/2009.
6
//  Copyright 2009 All-Seeing Interactive. All rights reserved.
7
//
8

    
9
#import <Foundation/Foundation.h>
10
#import "ASITestCase.h"
11
@class ASINetworkQueue;
12

    
13
// Proxy tests must be run separately from other tests, using the proxy you specify
14
// Some tests require an authenticating proxy to function
15

    
16
@interface ProxyTests : ASITestCase {
17
        ASINetworkQueue *queue;
18
        BOOL complete;
19
}
20
- (void)testProxy;
21
- (void)testProxyAutodetect;
22
- (void)testProxyWithSuppliedAuthenticationCredentials;
23
- (void)testDoubleAuthentication;
24
- (void)testProxyForHTTPS;
25

    
26
@property (retain) ASINetworkQueue *queue;
27
@property (assign) BOOL complete;
28

    
29
@end