Files
compute-runtime/opencl/test/unit_test/fixtures/built_in_fixture.h
Mateusz Jablonski d16668300e Stop using NOLINT for setup and teardown methods
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2022-08-17 10:33:02 +02:00

22 lines
307 B
C++

/*
* Copyright (C) 2018-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
namespace NEO {
class BuiltIns;
class Device;
} // namespace NEO
class BuiltInFixture {
public:
void setUp(NEO::Device *pDevice);
void tearDown();
NEO::BuiltIns *pBuiltIns = nullptr;
};