2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2022-06-28 16:58:38 +08:00
|
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2020-05-28 20:05:12 +08:00
|
|
|
#include "opencl/test/unit_test/fixtures/cl_device_fixture.h"
|
2020-02-23 22:20:22 +08:00
|
|
|
#include "opencl/test/unit_test/fixtures/context_fixture.h"
|
|
|
|
|
2017-12-21 07:45:38 +08:00
|
|
|
#include <vector>
|
|
|
|
|
2020-05-28 20:05:12 +08:00
|
|
|
class ProgramTests : public NEO::ClDeviceFixture,
|
2018-03-16 01:13:52 +08:00
|
|
|
public ::testing::Test,
|
2019-03-26 18:59:46 +08:00
|
|
|
public NEO::ContextFixture {
|
2018-03-16 01:13:52 +08:00
|
|
|
|
2022-08-16 22:51:17 +08:00
|
|
|
using NEO::ContextFixture::setUp;
|
2018-03-16 01:13:52 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
void SetUp() override;
|
|
|
|
void TearDown() override;
|
|
|
|
};
|