chromium/services/network/ip_protection/ip_protection_geo_utils_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 "services/network/ip_protection/ip_protection_geo_utils.h"

#include <optional>
#include <string>

#include "components/ip_protection/common/ip_protection_data_types.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace network {

class IpProtectionGeoUtilsTest : public testing::Test {};

TEST_F(IpProtectionGeoUtilsTest, GetGeoIdFromGeoHint_ValidInput) {}

TEST_F(IpProtectionGeoUtilsTest, GetGeoIdFromGeoHint_CountryCodeOnly) {}

TEST_F(IpProtectionGeoUtilsTest, GetGeoIdFromGeoHint_EmptyGeoHintPtr) {}

TEST_F(IpProtectionGeoUtilsTest, GetGeoIdFromGeoHint_NullOptGeoHint) {}

TEST_F(IpProtectionGeoUtilsTest, GetGeoHintFromGeoIdForTesting_CompleteGeoId) {}

TEST_F(IpProtectionGeoUtilsTest,
       GetGeoHintFromGeoIdForTesting_CountryOnlyGeoId) {}

TEST_F(IpProtectionGeoUtilsTest, GetGeoHintFromGeoIdForTesting_EmptyGeoId) {}

}  // namespace network