OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 * | 9 * |
10 * This file includes unit tests for the RtcpPacket. | 10 * This file includes unit tests for the RtcpPacket. |
11 */ | 11 */ |
12 | 12 |
13 #include "testing/gmock/include/gmock/gmock.h" | 13 #include "testing/gmock/include/gmock/gmock.h" |
14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
15 | 15 |
16 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" | 16 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" |
| 17 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/app.h" |
17 #include "webrtc/test/rtcp_packet_parser.h" | 18 #include "webrtc/test/rtcp_packet_parser.h" |
18 | 19 |
19 using ::testing::ElementsAre; | 20 using ::testing::ElementsAre; |
20 | 21 |
21 using webrtc::rtcp::App; | 22 using webrtc::rtcp::App; |
22 using webrtc::rtcp::Bye; | 23 using webrtc::rtcp::Bye; |
23 using webrtc::rtcp::Dlrr; | 24 using webrtc::rtcp::Dlrr; |
24 using webrtc::rtcp::Empty; | 25 using webrtc::rtcp::Empty; |
25 using webrtc::rtcp::Fir; | 26 using webrtc::rtcp::Fir; |
26 using webrtc::rtcp::Ij; | 27 using webrtc::rtcp::Ij; |
(...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1079 EXPECT_TRUE(xr.WithDlrr(&dlrr)); | 1080 EXPECT_TRUE(xr.WithDlrr(&dlrr)); |
1080 EXPECT_FALSE(xr.WithDlrr(&dlrr)); | 1081 EXPECT_FALSE(xr.WithDlrr(&dlrr)); |
1081 | 1082 |
1082 VoipMetric voip_metric; | 1083 VoipMetric voip_metric; |
1083 for (int i = 0; i < kMaxBlocks; ++i) | 1084 for (int i = 0; i < kMaxBlocks; ++i) |
1084 EXPECT_TRUE(xr.WithVoipMetric(&voip_metric)); | 1085 EXPECT_TRUE(xr.WithVoipMetric(&voip_metric)); |
1085 EXPECT_FALSE(xr.WithVoipMetric(&voip_metric)); | 1086 EXPECT_FALSE(xr.WithVoipMetric(&voip_metric)); |
1086 } | 1087 } |
1087 | 1088 |
1088 } // namespace webrtc | 1089 } // namespace webrtc |
OLD | NEW |