blob: c7ba4baa7ed1ebcaff42159dbcc13eeda58372f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// TestSmartConnection.h
// SmartDeviceLinkTests
//
// Copyright © 2020 Luxoft. All rights reserved
//
#import <Foundation/Foundation.h>
#import "SDLRPCRequest.h"
#import "SDLRPCResponse.h"
NS_ASSUME_NONNULL_BEGIN
@interface TestSmartConnection : NSObject
@property (nonatomic, strong, nullable) SDLRPCRequest *request;
@property (nonatomic, strong, nullable) SDLRPCResponse *response;
@property (nonatomic, strong, nullable) NSError *error;
@property (nonatomic, assign) BOOL oneTimeUse;
@end
NS_ASSUME_NONNULL_END
|