blob: 6711fcb1f78cfab5aaf4944471d4b694716fff40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//
// TestProgressResponse.m
// SmartDeviceLink-iOS
//
// Created by Nicole on 8/17/17.
// Copyright © 2017 smartdevicelink. All rights reserved.
//
#import "TestFileProgressResponse.h"
@implementation TestFileProgressResponse
- (instancetype)initWithFileName:(NSString *)testFileName testUploadPercentage:(float)testUploadPercentage error:(NSError *)testError {
self = [super init];
if (!self) {
return nil;
}
_testFileName = testFileName;
_testUploadPercentage = testUploadPercentage;
_testError = testError;
return self;
}
@end
|