blob: 455552bad5242a122dbfc493147619e4522bf0bd (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
//
// SDLAddCommandSpec.m
// SmartDeviceLink
#import <Foundation/Foundation.h>
#import <Quick/Quick.h>
#import <Nimble/Nimble.h>
#import "SDLAddCommand.h"
#import "SDLImage.h"
#import "SDLMenuParams.h"
#import "SDLNames.h"
QuickSpecBegin(SDLAddCommandSpec)
SDLMenuParams* menu = [[SDLMenuParams alloc] init];
SDLImage* image = [[SDLImage alloc] init];
describe(@"Getter/Setter Tests", ^ {
it(@"Should set and get correctly", ^ {
SDLAddCommand* testRequest = [[SDLAddCommand alloc] init];
testRequest.cmdID = @434577;
testRequest.menuParams = menu;
testRequest.vrCommands = [@[@"name", @"anotherName"] mutableCopy];
testRequest.cmdIcon = image;
expect(testRequest.cmdID).to(equal(@434577));
expect(testRequest.menuParams).to(equal(menu));
expect(testRequest.vrCommands).to(equal([@[@"name", @"anotherName"] mutableCopy]));
expect(testRequest.cmdIcon).to(equal(image));
});
it(@"Should get correctly when initialized", ^ {
NSMutableDictionary* dict = [@{NAMES_request:
@{NAMES_parameters:
@{NAMES_cmdID:@434577,
NAMES_menuParams:menu,
NAMES_vrCommands:[@[@"name", @"anotherName"] mutableCopy],
NAMES_cmdIcon:image},
NAMES_operation_name:NAMES_AddCommand}} mutableCopy];
SDLAddCommand* testRequest = [[SDLAddCommand alloc] initWithDictionary:dict];
expect(testRequest.cmdID).to(equal(@434577));
expect(testRequest.menuParams).to(equal(menu));
expect(testRequest.vrCommands).to(equal([@[@"name", @"anotherName"] mutableCopy]));
expect(testRequest.cmdIcon).to(equal(image));
});
it(@"Should return nil if not set", ^ {
SDLAddCommand* testRequest = [[SDLAddCommand alloc] init];
expect(testRequest.cmdID).to(beNil());
expect(testRequest.menuParams).to(beNil());
expect(testRequest.vrCommands).to(beNil());
expect(testRequest.cmdIcon).to(beNil());
});
});
QuickSpecEnd
|