mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 06:10:40 +01:00

This can be better used to determine the length of test calls, rather than using the interval metric. Bug: webrtc:11017 Change-Id: I69f66fa750b061a7d010d591a718555e2b5b34b7 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/156087 Commit-Queue: Evan Shrubsole <eshr@google.com> Reviewed-by: Sebastian Jansson <srte@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29413}
27 lines
973 B
C++
27 lines
973 B
C++
/*
|
|
* Copyright 2019 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
#include "test/scenario/performance_stats.h"
|
|
|
|
#include "test/gtest.h"
|
|
|
|
namespace webrtc {
|
|
namespace test {
|
|
|
|
TEST(EventRateCounter, ReturnsCorrectTotalDuration) {
|
|
EventRateCounter event_rate_counter;
|
|
EXPECT_EQ(event_rate_counter.TotalDuration(), TimeDelta::Zero());
|
|
event_rate_counter.AddEvent(Timestamp::seconds(1));
|
|
EXPECT_EQ(event_rate_counter.TotalDuration(), TimeDelta::Zero());
|
|
event_rate_counter.AddEvent(Timestamp::seconds(2));
|
|
EXPECT_EQ(event_rate_counter.TotalDuration(), TimeDelta::seconds(1));
|
|
}
|
|
|
|
} // namespace test
|
|
} // namespace webrtc
|