// 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 "components/safe_browsing/content/browser/client_report_util.h" #include "components/safe_browsing/core/common/proto/csd.pb.h" #include "testing/gtest/include/gtest/gtest.h" const char kPhishingUrl[] = …; namespace safe_browsing { class ClientReportUtilTest : public testing::Test { … }; TEST_F(ClientReportUtilTest, FillBasicReport) { … } TEST_F(ClientReportUtilTest, FillInterstitialInteractionsOfReport) { … } } // namespace safe_browsing