Files
compute-runtime/opencl/test/unit_test/fixtures/context_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
356 B
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "CL/cl.h"
namespace NEO {
class MockContext;
class ContextFixture {
protected:
virtual void SetUp(cl_uint numDevices, cl_device_id *pDeviceList);
virtual void TearDown();
MockContext *pContext = nullptr;
};
} // namespace NEO