chromium/components/performance_manager/execution_context/execution_context_attached_data_unittest.cc

// Copyright 2020 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/execution_context/execution_context_attached_data.h"

#include "base/memory/raw_ptr.h"
#include "components/performance_manager/execution_context/execution_context_registry_impl.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 execution_context {

namespace {

class FakeData : public ExecutionContextAttachedData<FakeData> {};

class ExecutionContextAttachedDataTest : public GraphTestHarness {};

}  // namespace

TEST_F(ExecutionContextAttachedDataTest, AdapterWorks) {}

}  // namespace execution_context
}  // namespace performance_manager