StressTests.h 1006 Bytes
//
//  StressTests.h
//  Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest
//
//  Created by Ben Copsey on 30/10/2009.
//  Copyright 2009 All-Seeing Interactive. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "ASITestCase.h"

@class ASIHTTPRequest;


@interface MyDelegate : NSObject {
	ASIHTTPRequest *request;
}
@property (retain) ASIHTTPRequest *request;
@end

@interface StressTests : ASITestCase {
	float progress;
	ASIHTTPRequest *cancelRequest;
	NSDate *cancelStartDate;
	MyDelegate *delegate;
	NSLock *createRequestLock;
}

- (void)testCancelQueue;

- (void)testCancelStressTest;
- (void)performCancelRequest;

- (void)testRedirectStressTest;
- (void)performRedirectRequest;

- (void)testSetDelegate;
- (void)performSetDelegateRequest;

- (void)setProgress:(float)newProgress;

@property (retain) ASIHTTPRequest *cancelRequest;
@property (retain) NSDate *cancelStartDate;
@property (retain) MyDelegate *delegate;
@property (retain) NSLock *createRequestLock;
@end