mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-06 06:14:53 +00:00
23 lines
481 B
Objective-C
23 lines
481 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "HTTPResponse.h"
|
|
|
|
@class HTTPConnection;
|
|
|
|
//
|
|
// This class is a UnitTest for the delayResponseHeaders capability of HTTPConnection
|
|
//
|
|
|
|
@interface HTTPResponseTest : NSObject <HTTPResponse>
|
|
{
|
|
// Parents retain children, children do NOT retain parents
|
|
|
|
HTTPConnection __unsafe_unretained *connection;
|
|
dispatch_queue_t connectionQueue;
|
|
|
|
BOOL readyToSendResponseHeaders;
|
|
}
|
|
|
|
- (id)initWithConnection:(HTTPConnection *)connection;
|
|
|
|
@end
|