| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 | 10 |
| 11 #include <algorithm> | 11 #include <algorithm> |
| 12 #include <limits> | 12 #include <limits> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 #include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h" | 16 #include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h" |
| 17 #include "webrtc/system_wrappers/interface/clock.h" | 17 #include "webrtc/system_wrappers/include/clock.h" |
| 18 | 18 |
| 19 namespace webrtc { | 19 namespace webrtc { |
| 20 namespace test { | 20 namespace test { |
| 21 | 21 |
| 22 static const int kDefaultHistoryLengthMs = 1000; | 22 static const int kDefaultHistoryLengthMs = 1000; |
| 23 | 23 |
| 24 class SendTimeHistoryTest : public ::testing::Test { | 24 class SendTimeHistoryTest : public ::testing::Test { |
| 25 protected: | 25 protected: |
| 26 SendTimeHistoryTest() | 26 SendTimeHistoryTest() |
| 27 : clock_(0), history_(&clock_, kDefaultHistoryLengthMs) {} | 27 : clock_(0), history_(&clock_, kDefaultHistoryLengthMs) {} |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 EXPECT_TRUE(history_.GetInfo(&info2, true)); | 225 EXPECT_TRUE(history_.GetInfo(&info2, true)); |
| 226 EXPECT_EQ(packets[1], info2); | 226 EXPECT_EQ(packets[1], info2); |
| 227 | 227 |
| 228 PacketInfo info3(0, 0, packets[2].sequence_number, 0, false); | 228 PacketInfo info3(0, 0, packets[2].sequence_number, 0, false); |
| 229 EXPECT_TRUE(history_.GetInfo(&info3, true)); | 229 EXPECT_TRUE(history_.GetInfo(&info3, true)); |
| 230 EXPECT_EQ(packets[2], info3); | 230 EXPECT_EQ(packets[2], info3); |
| 231 } | 231 } |
| 232 | 232 |
| 233 } // namespace test | 233 } // namespace test |
| 234 } // namespace webrtc | 234 } // namespace webrtc |
| OLD | NEW |