// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <cmath> #include "components/page_load_metrics/browser/observers/ad_metrics/univariate_stats.h" #include "testing/gtest/include/gtest/gtest.h" namespace page_load_metrics { TEST(UnivariateStatsTest, NoData) { … } TEST(UnivariateStatsTest, OneDataPoint) { … } TEST(UnivariateStatsTest, TwoDataPoints_EqualWeight) { … } TEST(UnivariateStatsTest, TwoDataPoints_UnequalWeight) { … } } // namespace page_load_metrics