Files
compute-runtime/shared/test/common/fixtures/tbx_command_stream_fixture.h
Zbigniew Zdanowicz 4176cac845 Move shared mocks to shared directory
Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
2021-12-21 13:26:59 +01:00

26 lines
420 B
C++

/*
* Copyright (C) 2018-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
namespace NEO {
class CommandStreamReceiver;
class MockDevice;
class MemoryManager;
class TbxCommandStreamFixture {
public:
void SetUp(MockDevice *pDevice);
void TearDown();
CommandStreamReceiver *pCommandStreamReceiver = nullptr;
MemoryManager *memoryManager = nullptr;
};
} // namespace NEO