mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-29 17:10:31 +00:00
21 lines
391 B
Objective-C
21 lines
391 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@class HCTestFailure;
|
|
|
|
|
|
/**
|
|
Chain-of-responsibility for handling test failures.
|
|
|
|
@ingroup integration
|
|
*/
|
|
@protocol HCTestFailureHandler <NSObject>
|
|
|
|
@property (nonatomic, strong) id <HCTestFailureHandler> successor;
|
|
|
|
/**
|
|
Handle test failure at specific location, or pass to successor.
|
|
*/
|
|
- (void)handleFailure:(HCTestFailure *)failure;
|
|
|
|
@end
|