summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/rtc_base/experiments/rtt_mult_experiment_unittest.cc
blob: a6798a14114effd8e1c751e243ac61e67768d949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 *  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