chromium/components/sync/service/local_data_description_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/sync/service/local_data_description.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"

namespace syncer {
namespace {

// Convenience helper, since LocalDataDescription doesn't support designated
// inits.
LocalDataDescription BuildDescription(int item_count,
                                      const std::vector<std::string>& domains,
                                      int domain_count) {}

TEST(LocalDataDescriptionTest, AtMostThreeDomains) {}

TEST(LocalDataDescriptionTest, DomainsAreSorted) {}

TEST(LocalDataDescriptionTest, DomainsAreDeduped) {}

TEST(LocalDataDescriptionTest, GetDomainsDisplayText) {}

}  // namespace
}  // namespace syncer