blob: f4a0a3a8998f6e7d897b13b09e154541ebd5facd (
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
|
//
// SDLButtonCapabilitiesSpec.m
// SmartDeviceLink
#import <Foundation/Foundation.h>
#import <Quick/Quick.h>
#import <Nimble/Nimble.h>
#import "SDLButtonCapabilities.h"
#import "SDLButtonName.h"
#import "SDLRPCParameterNames.h"
QuickSpecBegin(SDLButtonCapabilitiesSpec)
describe(@"Getter/Setter Tests", ^ {
it(@"Should set and get correctly", ^ {
SDLButtonCapabilities* testStruct = [[SDLButtonCapabilities alloc] init];
testStruct.name = SDLButtonNameTuneUp;
testStruct.shortPressAvailable = @YES;
testStruct.longPressAvailable = @YES;
testStruct.upDownAvailable = @NO;
expect(testStruct.name).to(equal(SDLButtonNameTuneUp));
expect(testStruct.shortPressAvailable).to(equal(@YES));
expect(testStruct.longPressAvailable).to(equal(@YES));
expect(testStruct.upDownAvailable).to(equal(@NO));
});
it(@"Should get correctly when initialized", ^ {
NSMutableDictionary* dict = [@{SDLRPCParameterNameName:SDLButtonNameCustomButton,
SDLRPCParameterNameShortPressAvailable:@YES,
SDLRPCParameterNameLongPressAvailable:@YES,
SDLRPCParameterNameUpDownAvailable:@NO} mutableCopy];
SDLButtonCapabilities* testStruct = [[SDLButtonCapabilities alloc] initWithDictionary:dict];
expect(testStruct.name).to(equal(SDLButtonNameCustomButton));
expect(testStruct.shortPressAvailable).to(equal(@YES));
expect(testStruct.longPressAvailable).to(equal(@YES));
expect(testStruct.upDownAvailable).to(equal(@NO));
});
it(@"Should return nil if not set", ^ {
SDLButtonCapabilities* testStruct = [[SDLButtonCapabilities alloc] init];
expect(testStruct.name).to(beNil());
expect(testStruct.shortPressAvailable).to(beNil());
expect(testStruct.longPressAvailable).to(beNil());
expect(testStruct.upDownAvailable).to(beNil());
});
});
QuickSpecEnd
|