25 lines
565 B
Objective-C
25 lines
565 B
Objective-C
//
|
||
// HttpdnsNWHTTPClientTestBase.h
|
||
// TrustHttpDNSTests
|
||
//
|
||
// @author Created by Claude Code on 2025-11-01
|
||
// Copyright © 2025 trustapp.com. All rights reserved.
|
||
//
|
||
// 测试基类 - 为所æœ?HttpdnsNWHTTPClient 测试æ<E280A2><C3A6>供共享çš?setup/teardown
|
||
//
|
||
|
||
#import <XCTest/XCTest.h>
|
||
#import "HttpdnsNWHTTPClient.h"
|
||
#import "HttpdnsNWHTTPClient_Internal.h"
|
||
#import "HttpdnsNWReusableConnection.h"
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface HttpdnsNWHTTPClientTestBase : XCTestCase
|
||
|
||
@property (nonatomic, strong) HttpdnsNWHTTPClient *client;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|