2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2022-05-09 17:40:30 +00:00
|
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2019-02-27 11:39:32 +01:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2017-12-21 00:45:38 +01:00
|
|
|
class BuiltIns;
|
2019-02-27 11:39:32 +01:00
|
|
|
class Device;
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|
2017-12-21 00:45:38 +01:00
|
|
|
|
|
|
|
class BuiltInFixture {
|
|
|
|
public:
|
2022-08-17 09:52:55 +00:00
|
|
|
void setUp(NEO::Device *pDevice);
|
|
|
|
void tearDown();
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2020-03-13 14:59:00 +01:00
|
|
|
NEO::BuiltIns *pBuiltIns = nullptr;
|
2017-12-21 00:45:38 +01:00
|
|
|
};
|