summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakamitsu Yoshii <tyoshii@xevo.com>2019-07-24 10:17:33 +0900
committerTakamitsu Yoshii <tyoshii@xevo.com>2019-07-24 10:17:33 +0900
commit478c594347d76410d72cf3e0dd659fd1499b2295 (patch)
treea4367f7e337dcb972105f2227a776ed20001195f
parent7f3f46e21e9e0d0800bd880fe9f495adda901bd7 (diff)
downloadsdl_ios-478c594347d76410d72cf3e0dd659fd1499b2295.tar.gz
add test
-rw-r--r--SmartDeviceLinkTests/DevAPISpecs/SDLStreamingMediaConfigurationSpec.m3
1 files changed, 3 insertions, 0 deletions
diff --git a/SmartDeviceLinkTests/DevAPISpecs/SDLStreamingMediaConfigurationSpec.m b/SmartDeviceLinkTests/DevAPISpecs/SDLStreamingMediaConfigurationSpec.m
index c5fc8949c..096dac630 100644
--- a/SmartDeviceLinkTests/DevAPISpecs/SDLStreamingMediaConfigurationSpec.m
+++ b/SmartDeviceLinkTests/DevAPISpecs/SDLStreamingMediaConfigurationSpec.m
@@ -38,6 +38,7 @@ 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));
});
});
@@ -53,6 +54,7 @@ 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));
});
});
@@ -72,6 +74,7 @@ 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));
});
});
});