blob: cf0c8bfc720e01c22ce88de0c32d8afbc3ccb1c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//
// TestMultipleRequestsConnectionManager.h
// SmartDeviceLinkTests
//
// Created by Joel Fischer on 2/8/18.
// Copyright © 2018 smartdevicelink. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "TestConnectionManager.h"
@interface TestMultipleRequestsConnectionManager : TestConnectionManager
/**
* A response and error to pass into the last request's block
*/
@property (copy, nonatomic) NSMutableDictionary *responses;
@end
|