#include "content/browser/interest_group/interest_group_priority_util.h"
#include <string>
#include "base/containers/flat_map.h"
#include "base/time/time.h"
#include "content/browser/interest_group/storage_interest_group.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/interest_group/auction_config.h"
#include "third_party/blink/public/common/interest_group/interest_group.h"
#include "url/gurl.h"
#include "url/origin.h"
namespace content {
class InterestGroupPriorityUtilTest : public testing::Test { … };
TEST_F(InterestGroupPriorityUtilTest, NullSignals) { … }
TEST_F(InterestGroupPriorityUtilTest, EmptySignals) { … }
TEST_F(InterestGroupPriorityUtilTest, PerBuyerSignals) { … }
TEST_F(InterestGroupPriorityUtilTest, PerBuyerSignalsOtherOrigin) { … }
TEST_F(InterestGroupPriorityUtilTest, AllBuyerSignals) { … }
TEST_F(InterestGroupPriorityUtilTest, PrioritySignalsOverrides) { … }
TEST_F(InterestGroupPriorityUtilTest, PrioritySignalsMasking) { … }
TEST_F(InterestGroupPriorityUtilTest, BrowserSignalsAge) { … }
}