mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
correct naming in derived classes Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
28 lines
658 B
C++
28 lines
658 B
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/test/common/fixtures/device_fixture.h"
|
|
#include "shared/test/common/mocks/mock_memory_manager.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
|