Files
compute-runtime/shared/test/common/fixtures/mock_execution_environment_gmm_fixture.h
2022-08-16 12:52:49 +02:00

30 lines
489 B
C++

/*
* Copyright (C) 2020-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <memory>
namespace NEO {
struct MockExecutionEnvironment;
class GmmHelper;
class GmmClientContext;
class MockExecutionEnvironmentGmmFixture {
protected:
void setUp();
void tearDown();
std::unique_ptr<MockExecutionEnvironment> executionEnvironment;
public:
GmmHelper *getGmmHelper();
GmmClientContext *getGmmClientContext();
};
} // namespace NEO