Files
waf-platform/EdgeHttpDNS/sdk/ios/AlicloudHttpDNSTests/Network/HttpdnsNWHTTPClientTestBase.h
2026-02-20 17:56:24 +08:00

25 lines
573 B
Objective-C

//
// HttpdnsNWHTTPClientTestBase.h
// AlicloudHttpDNSTests
//
// @author Created by Claude Code on 2025-11-01
// Copyright © 2025 alibaba-inc.com. All rights reserved.
//
// 测试基类 - 为所有 HttpdnsNWHTTPClient 测试提供共享的 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