#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 { … };
}
TEST_F(ExecutionContextAttachedDataTest, AdapterWorks) { … }
}
}