| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 "webrtc/video/stats_counter.h" | 11 #include "webrtc/video/stats_counter.h" |
| 12 | 12 |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "webrtc/test/gtest.h" |
| 14 | 14 |
| 15 #include "webrtc/system_wrappers/include/clock.h" | 15 #include "webrtc/system_wrappers/include/clock.h" |
| 16 | 16 |
| 17 namespace webrtc { | 17 namespace webrtc { |
| 18 namespace { | 18 namespace { |
| 19 const int kProcessIntervalMs = 2000; | 19 const int kProcessIntervalMs = 2000; |
| 20 | 20 |
| 21 class StatsCounterObserverImpl : public StatsCounterObserver { | 21 class StatsCounterObserverImpl : public StatsCounterObserver { |
| 22 public: | 22 public: |
| 23 StatsCounterObserverImpl() : num_calls_(0), last_sample_(-1) {} | 23 StatsCounterObserverImpl() : num_calls_(0), last_sample_(-1) {} |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 counter.ProcessAndGetStats(); | 431 counter.ProcessAndGetStats(); |
| 432 EXPECT_EQ(1, observer->num_calls_); | 432 EXPECT_EQ(1, observer->num_calls_); |
| 433 // Make next interval pass, [6:1][24:1] | 433 // Make next interval pass, [6:1][24:1] |
| 434 clock_.AdvanceTimeMilliseconds(1); | 434 clock_.AdvanceTimeMilliseconds(1); |
| 435 counter.ProcessAndGetStats(); | 435 counter.ProcessAndGetStats(); |
| 436 EXPECT_EQ(2, observer->num_calls_); | 436 EXPECT_EQ(2, observer->num_calls_); |
| 437 EXPECT_EQ(24, observer->last_sample_); | 437 EXPECT_EQ(24, observer->last_sample_); |
| 438 } | 438 } |
| 439 | 439 |
| 440 } // namespace webrtc | 440 } // namespace webrtc |
| OLD | NEW |