blob: 326524daff9f7e6c8480df999eadf635d6b7ddbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// TestResponse.h
// SmartDeviceLink-iOS
//
// Created by Nicole on 8/17/17.
// Copyright © 2017 smartdevicelink. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "SDLPutFileResponse.h"
@interface TestResponse : NSObject
@property (strong, nonatomic) SDLRPCResponse *testResponse;
@property (strong, nonatomic) NSError *testError;
- (instancetype)initWithResponse:(SDLRPCResponse *)testResponse error:(NSError *)testError;
@end
|