chromium/components/data_sharing/internal/data_sharing_network_loader_impl_unittest.cc

// Copyright 2024 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/data_sharing/internal/data_sharing_network_loader_impl.h"

#include <memory>

#include "base/test/task_environment.h"
#include "components/data_sharing/public/data_sharing_network_loader.h"
#include "components/data_sharing/public/group_data.h"
#include "components/endpoint_fetcher/mock_endpoint_fetcher.h"
#include "components/signin/public/identity_manager/identity_test_environment.h"
#include "net/traffic_annotation/network_traffic_annotation_test_helper.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "services/network/public/cpp/weak_wrapper_shared_url_loader_factory.h"
#include "services/network/test/test_url_loader_factory.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace data_sharing {

const std::string kExpectedResponse =;

class MockDataSharingNetworkLoaderImpl : public DataSharingNetworkLoaderImpl {};

class DataSharingNetworkLoaderImplTest : public testing::Test {};

TEST_F(DataSharingNetworkLoaderImplTest, BadHttpStatusCode) {}

TEST_F(DataSharingNetworkLoaderImplTest, CallbackRunOnUrlResponse) {}

}  // namespace data_sharing