blob: 91db7b6c99202c756bbe4a365310287d336c63a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// TestMultipleFilesConnectionManager.h
// SmartDeviceLink-iOS
//
// Created by Nicole on 8/16/17.
// Copyright © 2017 smartdevicelink. All rights reserved.
//
#import "TestConnectionManager.h"
#import "SDLPutFileResponse.h"
NS_ASSUME_NONNULL_BEGIN
@interface TestMultipleFilesConnectionManager : TestConnectionManager
/**
* A response and error to pass into the last request's block
*/
@property (copy, nonatomic) NSMutableDictionary *responses;
@end
NS_ASSUME_NONNULL_END
|