mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

This feature has had positive impact in downstream experiments, so we should enable it by default. It will be kept around as a kill switch for a while though. Bug: webrtc:15260 Change-Id: Ibfd25f5be124f65cd4360ae76f7022bb46f65301 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/309781 Reviewed-by: Åsa Persson <asapersson@webrtc.org> Commit-Queue: Rasmus Brandt <brandtr@webrtc.org> Cr-Commit-Position: refs/heads/main@{#40327}
31 lines
1.1 KiB
C++
31 lines
1.1 KiB
C++
/*
|
|
* Copyright 2018 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 "rtc_base/experiments/rtt_mult_experiment.h"
|
|
|
|
#include "test/field_trial.h"
|
|
#include "test/gtest.h"
|
|
|
|
namespace webrtc {
|
|
|
|
TEST(RttMultExperimentTest, RttMultEnabledByDefault) {
|
|
EXPECT_TRUE(RttMultExperiment::RttMultEnabled());
|
|
ASSERT_TRUE(RttMultExperiment::GetRttMultValue());
|
|
EXPECT_EQ(0.9f, RttMultExperiment::GetRttMultValue()->rtt_mult_setting);
|
|
EXPECT_EQ(200.0f, RttMultExperiment::GetRttMultValue()->rtt_mult_add_cap_ms);
|
|
}
|
|
|
|
TEST(RttMultExperimentTest, RttMultDisabledByFieldTrial) {
|
|
webrtc::test::ScopedFieldTrials field_trials("WebRTC-RttMult/Disabled/");
|
|
EXPECT_FALSE(RttMultExperiment::RttMultEnabled());
|
|
EXPECT_FALSE(RttMultExperiment::GetRttMultValue());
|
|
}
|
|
|
|
} // namespace webrtc
|