Files
compute-runtime/shared/test/common/fixtures/front_window_fixture.h
Mateusz Jablonski 527806b3ed Use full path to include test.h 2/n
fix files in shared

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2021-12-15 13:09:50 +01:00

26 lines
687 B
C++

/*
* Copyright (C) 2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/test/common/fixtures/device_fixture.h"
#include "shared/test/common/mocks/mock_memory_manager.h"
#include "shared/test/common/test_macros/test.h"
namespace NEO {
class MemManagerFixture : public DeviceFixture {
public:
struct FrontWindowMemManagerMock : public MockMemoryManager {
FrontWindowMemManagerMock(NEO::ExecutionEnvironment &executionEnvironment);
void forceLimitedRangeAllocator(uint32_t rootDeviceIndex, uint64_t range);
};
void SetUp();
void TearDown();
std::unique_ptr<FrontWindowMemManagerMock> memManager;
};
} // namespace NEO