Files
Monkey-Test/WebDriverAgent/Carthage/Checkouts/RoutingHTTPServer/External/CocoaHTTPServer/Samples/DynamicServer/HTTPResponseTest.h
T
2019-01-25 17:01:52 +08:00

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