2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2022-05-10 01:40:30 +08:00
|
|
|
* Copyright (C) 2018-2022 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
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
class CommandStreamReceiver;
|
|
|
|
class MockDevice;
|
2021-12-21 05:13:39 +08:00
|
|
|
class MemoryManager;
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2021-12-21 05:13:39 +08:00
|
|
|
class TbxCommandStreamFixture {
|
2017-12-21 07:45:38 +08:00
|
|
|
public:
|
2022-08-12 22:24:49 +08:00
|
|
|
void setUp(MockDevice *pDevice);
|
|
|
|
void tearDown();
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
CommandStreamReceiver *pCommandStreamReceiver = nullptr;
|
|
|
|
|
2020-03-13 16:17:01 +08:00
|
|
|
MemoryManager *memoryManager = nullptr;
|
2017-12-21 07:45:38 +08:00
|
|
|
};
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|