1 /*
2  * Copyright (C) 2021 Intel Corporation
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  */
7 
8 #pragma once
9 #include "shared/source/gmm_helper/gmm_helper.h"
10 
11 namespace NEO {
12 struct MockGmmHelper : GmmHelper {
13     using GmmHelper::addressWidth;
14     using GmmHelper::l3CacheForDebugDisabled;
15 };
16 } // namespace NEO
17