Files
compute-runtime/opencl/test/unit_test/indirect_heap/indirect_heap_fixture.h
Jablonski, Mateusz a996ec6d9a Fix unit test issues
remove dead store
initialize default values in class definition

Change-Id: I39abef12104a80df13ace0fb127c4ee24e00b184
Signed-off-by: Jablonski, Mateusz <mateusz.jablonski@intel.com>
2020-03-16 09:34:55 +01:00

26 lines
434 B
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/indirect_heap/indirect_heap.h"
namespace NEO {
class CommandQueue;
struct IndirectHeapFixture {
virtual void SetUp(CommandQueue *pCmdQ);
virtual void TearDown() {
}
IndirectHeap *pDSH = nullptr;
IndirectHeap *pIOH = nullptr;
IndirectHeap *pSSH = nullptr;
};
} // namespace NEO