summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests/TestConnectionRequestObject.m
blob: a1aa57bc4a89edf35ad8fff96b8f29dc056a687b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  TestConnectionRequestObject.m
//  SmartDeviceLinkTests
//
//  Created by Joel Fischer on 11/13/20.
//  Copyright © 2020 smartdevicelink. All rights reserved.
//

#import "TestConnectionRequestObject.h"

@implementation TestConnectionRequestObject

- (instancetype)initWithMessage:(__kindof SDLRPCMessage *)message responseHandler:(SDLResponseHandler)handler {
    self = [super init];
    if (!self) { return nil; }

    _message = message;
    _responseHandler = handler;

    return self;
}

@end