chromium/content/browser/private_aggregation/private_aggregation_budget_key_unittest.cc

// 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 "content/browser/private_aggregation/private_aggregation_budget_key.h"

#include <optional>

#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
#include "url/origin.h"

namespace content {

namespace {

constexpr auto kExampleTime =;

// `kExampleTime` floored to a minute boundary.
constexpr auto kExampleMinuteBoundary =;

constexpr char kExampleOriginUrl[] =;

}  // namespace

TEST(PrivateAggregationBudgetKeyTest, Fields_MatchInputs) {}

TEST(PrivateAggregationBudgetKeyTest, StartTimes_FlooredToTheMinute) {}

TEST(PrivateAggregationBudgetKeyTest, ExtremeStartTimes_HandledCorrectly) {}

TEST(PrivateAggregationBudgetKeyTest, UntrustworthyOrigin_KeyCreationFailed) {}

}  // namespace content