chromium/components/performance_manager/graph/node_data_describer_util_unittest.cc

// Copyright 2023 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/public/graph/node_data_describer_util.h"

#include <optional>
#include <string_view>

#include "base/json/json_reader.h"
#include "base/values.h"
#include "components/performance_manager/public/graph/node_data_describer.h"
#include "components/performance_manager/public/graph/node_data_describer_registry.h"
#include "components/performance_manager/test_support/graph_test_harness.h"
#include "components/performance_manager/test_support/mock_graphs.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace performance_manager {

namespace {

class TestNodeDataDescriber final : public NodeDataDescriber {};

class NodeDataDescriberUtilTest : public GraphTestHarness {};

TEST_F(NodeDataDescriberUtilTest, DumpNodeDescription) {}

TEST_F(NodeDataDescriberUtilTest, EmptyDumpRegisteredDescribers) {}

TEST_F(NodeDataDescriberUtilTest, DumpRegisteredDescribers) {}

}  // namespace

}  // namespace performance_manager