summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2016-08-24 15:36:57 -0400
committerJoel Fischer <joeljfischer@gmail.com>2016-08-24 15:36:57 -0400
commit3f55e799e9ad867fd3357c38e5df927693406eb3 (patch)
treed40da16fec42a19f37da531a0dc12a3bade7ca7a /SmartDeviceLinkTests
parenta5b22f57ab0a28a72485f62e578e042d73aefe43 (diff)
downloadsdl_ios-3f55e799e9ad867fd3357c38e5df927693406eb3.tar.gz
Add security managers to SDLLifecycleConfigurationSpec
Diffstat (limited to 'SmartDeviceLinkTests')
-rw-r--r--SmartDeviceLinkTests/DevAPISpecs/SDLLifecycleConfigurationSpec.m4
1 files changed, 4 insertions, 0 deletions
diff --git a/SmartDeviceLinkTests/DevAPISpecs/SDLLifecycleConfigurationSpec.m b/SmartDeviceLinkTests/DevAPISpecs/SDLLifecycleConfigurationSpec.m
index a0288c89c..321161258 100644
--- a/SmartDeviceLinkTests/DevAPISpecs/SDLLifecycleConfigurationSpec.m
+++ b/SmartDeviceLinkTests/DevAPISpecs/SDLLifecycleConfigurationSpec.m
@@ -37,6 +37,7 @@ describe(@"a lifecycle configuration", ^{
expect(testConfig.ttsName).to(beNil());
expect(testConfig.voiceRecognitionCommandNames).to(beNil());
expect(testConfig.resumeHash).to(beNil());
+ expect(testConfig.securityManagers).to(beNil());
});
describe(@"after setting properties manually", ^{
@@ -80,6 +81,7 @@ describe(@"a lifecycle configuration", ^{
expect(testConfig.ttsName).to(haveCount(@1));
expect(testConfig.voiceRecognitionCommandNames).to(haveCount(@(someSynonyms.count)));
expect(testConfig.resumeHash).to(match(someResumeHashString));
+ expect(testConfig.securityManagers).to(beNil());
});
});
});
@@ -112,6 +114,7 @@ describe(@"a lifecycle configuration", ^{
expect(testConfig.ttsName).to(beNil());
expect(testConfig.voiceRecognitionCommandNames).to(beNil());
expect(testConfig.resumeHash).to(beNil());
+ expect(testConfig.securityManagers).to(beNil());
});
describe(@"after setting properties manually", ^{
@@ -153,6 +156,7 @@ describe(@"a lifecycle configuration", ^{
expect(testConfig.ttsName).to(contain(someTTSChunk));
expect(testConfig.ttsName).to(haveCount(@1));
expect(testConfig.voiceRecognitionCommandNames).to(haveCount(@(someSynonyms.count)));
+ expect(testConfig.securityManagers).to(beNil());
});
});
});