// 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 "components/attribution_reporting/suitable_origin.h" #include <optional> #include "net/base/schemeful_site.h" #include "testing/gtest/include/gtest/gtest.h" #include "url/gurl.h" #include "url/origin.h" namespace attribution_reporting { namespace { TEST(SuitableOriginTest, Create) { … } TEST(SuitableOriginTest, Deserialize_Serialize) { … } TEST(SuitableOriginTest, Comparison) { … } TEST(SuitableOriginTest, IsSitePotentiallySuitable) { … } } // namespace } // namespace attribution_reporting