Files
compute-runtime/opencl/test/unit_test/fixtures/built_in_fixture.h
Jablonski, Mateusz 065c72eb36 Remove redundant constructors from unit tests
Change-Id: I56f939d99397848ccf7588dd7c822fd19035b935
Signed-off-by: Jablonski, Mateusz <mateusz.jablonski@intel.com>
2020-03-16 19:01:24 +01:00

22 lines
307 B
C++

/*
* Copyright (C) 2017-2020 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;
};