// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/browser/interest_group/noiser_and_bucketer.h" #include "base/time/time.h" #include "testing/gtest/include/gtest/gtest.h" namespace content { namespace { // The function should sometimes return not equal, within the range. template <typename Function, typename T> void EqualAndNotEqual(T input, int expected, Function function, int min, int max) { … } TEST(NoiserAndBucketerTest, JoinCount) { … } TEST(NoiserAndBucketerTest, Recency) { … } TEST(NoiserAndBucketerTest, ModelingSignals) { … } } // namespace } // namespace content