/ SharedMocks / NSXPCConnectionMock.h
NSXPCConnectionMock.h
 1  //
 2  //  NSXPCConnectionMock.h
 3  //  Security_ios
 4  //
 5  //  Created by Love Hörnquist Åstrand on 12/16/18.
 6  //
 7  
 8  #import <Foundation/Foundation.h>
 9  
10  NS_ASSUME_NONNULL_BEGIN
11  
12  @interface NSXPCConnectionMock : NSObject
13  - (instancetype) initWithRealObject:(id)reality;
14  - (id)remoteObjectProxyWithErrorHandler:(void(^)(NSError * _Nonnull error))failureHandler;
15  - (id)synchronousRemoteObjectProxyWithErrorHandler:(void(^)(NSError * _Nonnull error))failureHandler;
16  @end
17  
18  NS_ASSUME_NONNULL_END