summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLTouchCoordSpec.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLTouchCoordSpec.m')
-rw-r--r--SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLTouchCoordSpec.m44
1 files changed, 44 insertions, 0 deletions
diff --git a/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLTouchCoordSpec.m b/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLTouchCoordSpec.m
new file mode 100644
index 000000000..eedca3a9b
--- /dev/null
+++ b/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLTouchCoordSpec.m
@@ -0,0 +1,44 @@
+//
+// SDLTouchCoordSpec.m
+// SmartDeviceLink
+
+
+#import <Foundation/Foundation.h>
+
+#import <Quick/Quick.h>
+#import <Nimble/Nimble.h>
+
+#import "SDLTouchCoord.h"
+#import "SDLNames.h"
+
+QuickSpecBegin(SDLTouchCoordSpec)
+
+describe(@"Getter/Setter Tests", ^ {
+ it(@"Should set and get correctly", ^ {
+ SDLTouchCoord* testStruct = [[SDLTouchCoord alloc] init];
+
+ testStruct.x = @67;
+ testStruct.y = @362;
+
+ expect(testStruct.x).to(equal(@67));
+ expect(testStruct.y).to(equal(@362));
+ });
+
+ it(@"Should get correctly when initialized", ^ {
+ NSMutableDictionary* dict = [@{NAMES_x:@67,
+ NAMES_y:@362} mutableCopy];
+ SDLTouchCoord* testStruct = [[SDLTouchCoord alloc] initWithDictionary:dict];
+
+ expect(testStruct.x).to(equal(@67));
+ expect(testStruct.y).to(equal(@362));
+ });
+
+ it(@"Should return nil if not set", ^ {
+ SDLTouchCoord* testStruct = [[SDLTouchCoord alloc] init];
+
+ expect(testStruct.x).to(beNil());
+ expect(testStruct.y).to(beNil());
+ });
+});
+
+QuickSpecEnd \ No newline at end of file