2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2021-05-21 18:22:13 +08:00
|
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
2018-09-18 15:11:08 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2018-07-06 15:07:42 +08:00
|
|
|
#pragma once
|
2021-05-21 18:22:13 +08:00
|
|
|
#include "shared/test/common/mocks/mock_gmm_client_context_base.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-07-06 15:07:42 +08:00
|
|
|
class MockGmmClientContext : public MockGmmClientContextBase {
|
|
|
|
public:
|
2020-01-14 20:47:40 +08:00
|
|
|
MockGmmClientContext(OSInterface *osInterface, HardwareInfo *hwInfo);
|
2018-07-06 15:07:42 +08:00
|
|
|
};
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|