1 /*
2  * Copyright (C) 2018-2021 Intel Corporation
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  */
7 
8 #pragma once
9 #include "shared/test/common/mocks/mock_gmm_client_context_base.h"
10 
11 namespace NEO {
12 class MockGmmClientContext : public MockGmmClientContextBase {
13   public:
14     MockGmmClientContext(OSInterface *osInterface, HardwareInfo *hwInfo);
15 };
16 } // namespace NEO
17