summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLSeekIndicatorTypeSpec.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLSeekIndicatorTypeSpec.m')
-rw-r--r--SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLSeekIndicatorTypeSpec.m23
1 files changed, 23 insertions, 0 deletions
diff --git a/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLSeekIndicatorTypeSpec.m b/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLSeekIndicatorTypeSpec.m
new file mode 100644
index 000000000..fd5d06c25
--- /dev/null
+++ b/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLSeekIndicatorTypeSpec.m
@@ -0,0 +1,23 @@
+//
+// SDLSeekIndicatorTypeSpec.m
+// SmartDeviceLinkTests
+//
+// Created by Frank Elias on 12/4/20.
+// Copyright © 2020 smartdevicelink. All rights reserved.
+//
+
+#import <Quick/Quick.h>
+#import <Nimble/Nimble.h>
+
+#import "SDLSeekIndicatorType.h"
+
+QuickSpecBegin(SDLSeekIndicatorTypeSpec)
+
+describe(@"Individual Enum Value Tests", ^{
+ it(@"Should match internal values", ^{
+ expect(SDLSeekIndicatorTypeTrack).to(equal(@"TRACK"));
+ expect(SDLSeekIndicatorTypeTime).to(equal(@"TIME"));
+ });
+});
+
+QuickSpecEnd