#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) { … }
}
}