2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2019-02-27 18:39:32 +08:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2019-02-27 18:39:32 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "runtime/command_stream/tbx_command_stream_receiver_hw.h"
|
|
|
|
#include "unit_tests/command_stream/command_stream_fixture.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2017-12-21 07:45:38 +08:00
|
|
|
#include <cstdint>
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
class CommandStreamReceiver;
|
|
|
|
class MockDevice;
|
|
|
|
|
|
|
|
class TbxCommandStreamFixture : public CommandStreamFixture {
|
|
|
|
public:
|
|
|
|
virtual void SetUp(MockDevice *pDevice);
|
|
|
|
virtual void TearDown(void);
|
|
|
|
|
|
|
|
CommandStreamReceiver *pCommandStreamReceiver = nullptr;
|
|
|
|
|
|
|
|
MemoryManager *mmTbx;
|
|
|
|
};
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|