summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakamitsu Yoshii <tyoshii@xevo.com>2019-08-09 11:14:05 +0900
committerTakamitsu Yoshii <tyoshii@xevo.com>2019-08-09 11:14:05 +0900
commit3eb24df69b4d84aac2730b9d8793c396018cf1c8 (patch)
tree32fcb0cd768293965286c6b8b2dcf931cd880a15
parentcb560a116064d6dfc4086a4bb1859dbacc6da48e (diff)
downloadsdl_ios-3eb24df69b4d84aac2730b9d8793c396018cf1c8.tar.gz
update test
-rw-r--r--SmartDeviceLinkTests/DevAPISpecs/SDLStreamingMediaConfigurationSpec.m3
-rw-r--r--SmartDeviceLinkTests/DevAPISpecs/SDLStreamingVideoLifecycleManagerSpec.m1
2 files changed, 1 insertions, 3 deletions
diff --git a/SmartDeviceLinkTests/DevAPISpecs/SDLStreamingMediaConfigurationSpec.m b/SmartDeviceLinkTests/DevAPISpecs/SDLStreamingMediaConfigurationSpec.m
index 096dac630..c5fc8949c 100644
--- a/SmartDeviceLinkTests/DevAPISpecs/SDLStreamingMediaConfigurationSpec.m
+++ b/SmartDeviceLinkTests/DevAPISpecs/SDLStreamingMediaConfigurationSpec.m
@@ -38,7 +38,6 @@ describe(@"a streaming media configuration", ^{
expect(testConfig.allowMultipleViewControllerOrientations).to(equal(NO));
expect(testConfig.dataSource).to(equal(testDataSource));
expect(testConfig.rootViewController).to(equal(testViewController));
- expect(testConfig.showVideoBackgroundDisplay).to(equal(YES));
});
});
@@ -54,7 +53,6 @@ describe(@"a streaming media configuration", ^{
expect(testConfig.allowMultipleViewControllerOrientations).to(equal(NO));
expect(testConfig.dataSource).to(beNil());
expect(testConfig.rootViewController).to(beNil());
- expect(testConfig.showVideoBackgroundDisplay).to(equal(YES));
});
});
@@ -74,7 +72,6 @@ describe(@"a streaming media configuration", ^{
expect(testConfig.allowMultipleViewControllerOrientations).to(equal(NO));
expect(testConfig.dataSource).to(beNil());
expect(testConfig.rootViewController).to(beNil());
- expect(testConfig.showVideoBackgroundDisplay).to(equal(YES));
});
});
});
diff --git a/SmartDeviceLinkTests/DevAPISpecs/SDLStreamingVideoLifecycleManagerSpec.m b/SmartDeviceLinkTests/DevAPISpecs/SDLStreamingVideoLifecycleManagerSpec.m
index 872f5eb72..31737c214 100644
--- a/SmartDeviceLinkTests/DevAPISpecs/SDLStreamingVideoLifecycleManagerSpec.m
+++ b/SmartDeviceLinkTests/DevAPISpecs/SDLStreamingVideoLifecycleManagerSpec.m
@@ -90,6 +90,7 @@ describe(@"the streaming video manager", ^{
expect(@(CGSizeEqualToSize(streamingLifecycleManager.screenSize, CGSizeZero))).to(equal(@YES));
expect(@(streamingLifecycleManager.pixelBufferPool == NULL)).to(equal(@YES));
expect(@(streamingLifecycleManager.requestedEncryptionType)).to(equal(@(SDLStreamingEncryptionFlagNone)));
+ expect(@(streamingLifecycleManager.showVideoBackgroundDisplay)).to(equal(@YES));
expect(streamingLifecycleManager.currentAppState).to(equal(SDLAppStateActive));
expect(streamingLifecycleManager.currentVideoStreamState).to(equal(SDLVideoStreamManagerStateStopped));
expect(streamingLifecycleManager.videoFormat).to(beNil());