blob: baec5f3c73f79baa8c3bfea395b8c8f5a83d8805 (
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
|
//
// SDLOnKeyboardInputSpec.m
// SmartDeviceLink
#import <Foundation/Foundation.h>
#import <Quick/Quick.h>
#import <Nimble/Nimble.h>
#import "SDLKeyboardEvent.h"
#import "SDLOnKeyboardInput.h"
#import "SDLRPCParameterNames.h"
#import "SDLRPCFunctionNames.h"
QuickSpecBegin(SDLOnKeyboardInputSpec)
describe(@"Getter/Setter Tests", ^ {
it(@"Should set and get correctly", ^ {
SDLOnKeyboardInput* testNotification = [[SDLOnKeyboardInput alloc] init];
testNotification.event = SDLKeyboardEventSubmitted;
testNotification.data = @"qwertyg";
expect(testNotification.event).to(equal(SDLKeyboardEventSubmitted));
expect(testNotification.data).to(equal(@"qwertyg"));
});
it(@"Should get correctly when initialized", ^ {
NSMutableDictionary* dict = [@{SDLRPCParameterNameNotification:
@{SDLRPCParameterNameParameters:
@{SDLRPCParameterNameEvent:SDLKeyboardEventSubmitted,
SDLRPCParameterNameData:@"qwertyg"},
SDLRPCParameterNameOperationName:SDLRPCFunctionNameOnKeyboardInput}} mutableCopy];
SDLOnKeyboardInput* testNotification = [[SDLOnKeyboardInput alloc] initWithDictionary:dict];
expect(testNotification.event).to(equal(SDLKeyboardEventSubmitted));
expect(testNotification.data).to(equal(@"qwertyg"));
});
it(@"Should return nil if not set", ^ {
SDLOnKeyboardInput* testNotification = [[SDLOnKeyboardInput alloc] init];
expect(testNotification.event).to(beNil());
expect(testNotification.data).to(beNil());
});
});
QuickSpecEnd
|