mirror of
https://github.com/darlinghq/darling-security.git
synced 2024-11-26 21:40:21 +00:00
34 lines
672 B
Objective-C
34 lines
672 B
Objective-C
//
|
|
// NSXPCConnectionMock.m
|
|
// Security_ios
|
|
//
|
|
// Created by Love Hörnquist Åstrand on 12/16/18.
|
|
//
|
|
|
|
#import "NSXPCConnectionMock.h"
|
|
|
|
@interface NSXPCConnectionMock ()
|
|
@property id reality;
|
|
@end
|
|
|
|
@implementation NSXPCConnectionMock
|
|
- (instancetype) initWithRealObject:(id)reality
|
|
{
|
|
if ((self = [super init])) {
|
|
_reality = reality;
|
|
}
|
|
return self;
|
|
}
|
|
- (id)remoteObjectProxyWithErrorHandler:(void(^)(NSError * _Nonnull error))failureHandler
|
|
{
|
|
(void)failureHandler;
|
|
return _reality;
|
|
}
|
|
- (id)synchronousRemoteObjectProxyWithErrorHandler:(void(^)(NSError * _Nonnull error))failureHandler
|
|
{
|
|
(void)failureHandler;
|
|
return _reality;
|
|
}
|
|
|
|
@end
|