summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLVehicleTypeSpec.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLVehicleTypeSpec.m')
-rw-r--r--SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLVehicleTypeSpec.m54
1 files changed, 54 insertions, 0 deletions
diff --git a/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLVehicleTypeSpec.m b/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLVehicleTypeSpec.m
new file mode 100644
index 000000000..9a282b72e
--- /dev/null
+++ b/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLVehicleTypeSpec.m
@@ -0,0 +1,54 @@
+//
+// SDLVehicleTypeSpec.m
+// SmartDeviceLink
+
+
+#import <Foundation/Foundation.h>
+
+#import <Quick/Quick.h>
+#import <Nimble/Nimble.h>
+
+#import "SDLVehicleType.h"
+#import "SDLNames.h"
+
+QuickSpecBegin(SDLVehicleTypeSpec)
+
+describe(@"Getter/Setter Tests", ^ {
+ it(@"Should set and get correctly", ^ {
+ SDLVehicleType* testStruct = [[SDLVehicleType alloc] init];
+
+ testStruct.make = @"Make";
+ testStruct.model = @"Model";
+ testStruct.modelYear = @"3.141*10^36";
+ testStruct.trim = @"AE";
+
+ expect(testStruct.make).to(equal(@"Make"));
+ expect(testStruct.model).to(equal(@"Model"));
+ expect(testStruct.modelYear).to(equal(@"3.141*10^36"));
+ expect(testStruct.trim).to(equal(@"AE"));
+ });
+
+ it(@"Should get correctly when initialized", ^ {
+ NSMutableDictionary* dict = [@{NAMES_make:@"Make",
+ NAMES_model:@"Model",
+ NAMES_modelYear:@"3.141*10^36",
+ NAMES_trim:@"AE"} mutableCopy];
+ SDLVehicleType* testStruct = [[SDLVehicleType alloc] initWithDictionary:dict];
+
+ expect(testStruct.make).to(equal(@"Make"));
+ expect(testStruct.model).to(equal(@"Model"));
+ expect(testStruct.modelYear).to(equal(@"3.141*10^36"));
+ expect(testStruct.trim).to(equal(@"AE"));
+ });
+
+ it(@"Should return nil if not set", ^ {
+ SDLVehicleType* testStruct = [[SDLVehicleType alloc] init];
+
+ expect(testStruct.make).to(beNil());
+ expect(testStruct.model).to(beNil());
+ expect(testStruct.modelYear).to(beNil());
+ expect(testStruct.trim).to(beNil());
+ });
+});
+
+QuickSpecEnd \ No newline at end of file