chromium/components/history_clusters/core/clusterer_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/clusterer.h"

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

namespace history_clusters {
namespace {

ElementsAre;

class ClustererTest : public ::testing::Test {};

TEST_F(ClustererTest, ClusterOneVisit) {}

TEST_F(ClustererTest, ClusterTwoVisitsTiedByReferringVisit) {}

TEST_F(ClustererTest, ClusterTwoVisitsTiedByOpenerVisitOverReferrer) {}

TEST_F(ClustererTest, ClusterTwoVisitsTiedByOpenerVisit) {}

TEST_F(ClustererTest, ClusterTwoVisitsTiedBySimilarVisit) {}

TEST_F(ClustererTest, ClusterTwoVisitsTiedByNormalizedURL) {}

TEST_F(ClustererTest, MultipleClusters) {}

TEST_F(ClustererTest, SplitClusterOnNavigationTime) {}

TEST_F(ClustererTest, SplitClusterOnSearchVisit) {}

}  // namespace
}  // namespace history_clusters