chromium/components/history_clusters/core/on_device_clustering_util_unittest.cc

// Copyright 2021 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/history_clusters/core/on_device_clustering_util.h"

#include "base/test/task_environment.h"
#include "components/history/core/browser/url_row.h"
#include "components/history_clusters/core/clustering_test_utils.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace history_clusters {
namespace {

ElementsAre;
UnorderedElementsAre;

OnDeviceClusteringUtilTest;

TEST_F(OnDeviceClusteringUtilTest, MergeDuplicateVisitIntoCanonicalVisit) {}

TEST_F(OnDeviceClusteringUtilTest,
       MergeDuplicateVisitIntoCanonicalVisitMaintainsZeroScore) {}

TEST_F(OnDeviceClusteringUtilTest, IsNoisyVisitSearchHighEngagementVisit) {}

TEST_F(OnDeviceClusteringUtilTest, IsNoisyVisitNotSearchHighEngagementVisit) {}

TEST_F(OnDeviceClusteringUtilTest, IsNoisyVisitNotSearchLowEngagementVisit) {}

TEST_F(OnDeviceClusteringUtilTest, IsNoisyVisitSearchLowEngagementVisit) {}

TEST_F(OnDeviceClusteringUtilTest, AppendClusterVisits) {}

TEST_F(OnDeviceClusteringUtilTest, RemoveEmptyClusters) {}

}  // namespace
}  // namespace history_clusters