Summary: Achieving API parity with C++ and Android. Reviewed By: lblasa Differential Revision: D31921830 fbshipit-source-id: 873901107fc3c53166fa7bbaaff65ebdb0e53c2a
23 lines
673 B
Objective-C
23 lines
673 B
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <FlipperKit/FlipperConnection.h>
|
|
|
|
@interface FlipperConnectionMock : NSObject<FlipperConnection>
|
|
|
|
@property(nonatomic, assign, getter=isConnected) BOOL connected;
|
|
@property(nonatomic, readonly)
|
|
NSDictionary<NSString*, SonarReceiver>* receivers;
|
|
@property(nonatomic, readonly)
|
|
NSDictionary<NSString*, NSArray<NSDictionary*>*>* sent;
|
|
@property(nonatomic, readonly)
|
|
NSDictionary<NSString*, NSArray<NSArray*>*>* sentWithArray;
|
|
|
|
@end
|