Implement new-API test RecvStreamWithoutRtx.

R=pthatcher@google.com, pthatcher@webrtc.org
BUG=1788

Review URL: https://webrtc-codereview.appspot.com/20449005

git-svn-id: http://webrtc.googlecode.com/svn/trunk@6280 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org 2014-05-30 07:40:04 +00:00
parent c34bb3a886
commit 35efb839ed

View File

@ -650,8 +650,14 @@ TEST_F(WebRtcVideoChannel2Test, DISABLED_RecvStreamWithRtxOnMultiplePayloads) {
FAIL() << "Not implemented.";
}
TEST_F(WebRtcVideoChannel2Test, DISABLED_RecvStreamNoRtx) {
FAIL() << "Not implemented."; // TODO(pbos): Implement.
TEST_F(WebRtcVideoChannel2Test, RecvStreamWithoutRtx) {
EXPECT_TRUE(channel_->SetSendCodecs(engine_.codecs()));
EXPECT_TRUE(channel_->SetSend(true));
FakeVideoReceiveStream* recv_stream =
AddRecvStream(cricket::StreamParams::CreateLegacy(1));
EXPECT_TRUE(recv_stream->GetConfig().rtp.rtx.empty())
<< "RTX SSRCs for receive stream without RTX configured.";
}
TEST_F(WebRtcVideoChannel2Test, DISABLED_RtpTimestampOffsetHeaderExtensions) {