Files
compute-runtime/unit_tests/command_stream/tbx_command_stream_fixture.h
Mateusz Hoppe b5e2f322f6 Move files from runtime/memory_manager to core
- remove TbxMemoryManager

Change-Id: I554feff51f08e108b2e9ee22ecaa2cb75a1eead7
Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
2020-01-21 15:28:47 +01:00

29 lines
588 B
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "runtime/command_stream/tbx_command_stream_receiver_hw.h"
#include "unit_tests/command_stream/command_stream_fixture.h"
#include <cstdint>
namespace NEO {
class CommandStreamReceiver;
class MockDevice;
class TbxCommandStreamFixture : public CommandStreamFixture {
public:
virtual void SetUp(MockDevice *pDevice);
virtual void TearDown(void);
CommandStreamReceiver *pCommandStreamReceiver = nullptr;
MemoryManager *memoryManager;
};
} // namespace NEO