chromium/components/performance_manager/graph/graph_impl_operations_unittest.cc

// Copyright 2019 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/performance_manager/graph/graph_impl_operations.h"

#include <algorithm>
#include <vector>

#include "base/functional/bind.h"
#include "components/performance_manager/graph/frame_node_impl.h"
#include "components/performance_manager/graph/page_node_impl.h"
#include "components/performance_manager/graph/process_node_impl.h"
#include "components/performance_manager/graph/worker_node_impl.h"
#include "components/performance_manager/test_support/graph_test_harness.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace performance_manager {

namespace {

UnorderedElementsAre;

class GraphImplOperationsTest : public GraphTestHarness {};

}  // namespace

TEST_F(GraphImplOperationsTest, GetAssociatedPageNodes) {}

TEST_F(GraphImplOperationsTest, GetAssociatedProcessNodes) {}

TEST_F(GraphImplOperationsTest, GetFrameNodes) {}

TEST_F(GraphImplOperationsTest, VisitFrameTree) {}

TEST_F(GraphImplOperationsTest, HasFrame) {}

TEST_F(GraphImplOperationsTest, VisitAllWorkerClients) {}

}  // namespace performance_manager