blob: 6301272d64fff0d390a7e1b9d1d06e9f0444e81c (
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
|
//
// SDLSoftButtonCapabilitiesSpec.m
// SmartDeviceLink
#import <Foundation/Foundation.h>
#import <Quick/Quick.h>
#import <Nimble/Nimble.h>
#import "SDLSoftButtonCapabilities.h"
#import "SDLNames.h"
QuickSpecBegin(SDLSoftButtonCapabilitiesSpec)
describe(@"Getter/Setter Tests", ^ {
it(@"Should set and get correctly", ^ {
SDLSoftButtonCapabilities* testStruct = [[SDLSoftButtonCapabilities alloc] init];
testStruct.shortPressAvailable = @NO;
testStruct.longPressAvailable = @YES;
testStruct.upDownAvailable = @NO;
testStruct.imageSupported = @NO;
expect(testStruct.shortPressAvailable).to(equal(@NO));
expect(testStruct.longPressAvailable).to(equal(@YES));
expect(testStruct.upDownAvailable).to(equal(@NO));
expect(testStruct.imageSupported).to(equal(@NO));
});
it(@"Should get correctly when initialized", ^ {
NSMutableDictionary* dict = [@{SDLNameShortPressAvailable:@NO,
SDLNameLongPressAvailable:@YES,
SDLNameUpDownAvailable:@NO,
SDLNameImageSupported:@NO} mutableCopy];
SDLSoftButtonCapabilities* testStruct = [[SDLSoftButtonCapabilities alloc] initWithDictionary:dict];
expect(testStruct.shortPressAvailable).to(equal(@NO));
expect(testStruct.longPressAvailable).to(equal(@YES));
expect(testStruct.upDownAvailable).to(equal(@NO));
expect(testStruct.imageSupported).to(equal(@NO));
});
it(@"Should return nil if not set", ^ {
SDLSoftButtonCapabilities* testStruct = [[SDLSoftButtonCapabilities alloc] init];
expect(testStruct.shortPressAvailable).to(beNil());
expect(testStruct.longPressAvailable).to(beNil());
expect(testStruct.upDownAvailable).to(beNil());
expect(testStruct.imageSupported).to(beNil());
});
});
QuickSpecEnd
|