// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/nqe/network_quality_estimator_params.h" #include <map> #include <string> #include "net/base/network_change_notifier.h" #include "testing/gtest/include/gtest/gtest.h" namespace net::nqe::internal { namespace { // Tests if |weight_multiplier_per_second()| returns correct value for various // values of half life parameter. TEST(NetworkQualityEstimatorParamsTest, HalfLifeParam) { … } // Test that the typical network qualities are set correctly. TEST(NetworkQualityEstimatorParamsTest, TypicalNetworkQualities) { … } // Verify ECT when forced ECT is Slow-2G-On-Cellular. TEST(NetworkQualityEstimatorParamsTest, GetForcedECTCellularOnly) { … } } // namespace } // namespace net::nqe::internal