Cleanup includes in mock_device.h

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2022-11-16 15:50:07 +00:00
committed by Compute-Runtime-Automation
parent 0cea7fe6d1
commit 4882f51721
30 changed files with 60 additions and 21 deletions

View File

@ -6,9 +6,13 @@
*/
#pragma once
#include "opencl/test/unit_test/mocks/mock_program.h"
#include "opencl/test/unit_test/program/program_tests.h"
namespace NEO {
class MockGraphicsAllocation;
class MockProgram;
} // namespace NEO
using namespace NEO;
class MockBuffer;
@ -24,5 +28,6 @@ class ProgramWithZebinFixture : public ProgramTests {
void TearDown() override;
void addEmptyZebin(MockProgram *program);
void populateProgramWithSegments(MockProgram *program);
~ProgramWithZebinFixture() override = default;
~ProgramWithZebinFixture() override;
ProgramWithZebinFixture();
};