mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
d6cbdddc42
existing test/ directory
21 lines
456 B
Objective-C
21 lines
456 B
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSMessageSender.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
#ifdef DEBUG
|
|
|
|
@interface OWSFakeMessageSender : OWSMessageSender
|
|
|
|
@property (nonatomic, nullable) dispatch_block_t enqueueMessageBlock;
|
|
@property (nonatomic, nullable) dispatch_block_t enqueueAttachmentBlock;
|
|
@property (nonatomic, nullable) dispatch_block_t enqueueTemporaryAttachmentBlock;
|
|
|
|
@end
|
|
|
|
#endif
|
|
|
|
NS_ASSUME_NONNULL_END
|