/* * Copyright (C) 2018-2022 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "shared/source/command_stream/linear_stream.h" #include "shared/test/common/mocks/mock_graphics_allocation.h" #include "shared/test/common/test_macros/hw_test.h" #include namespace NEO { struct LinearStreamFixture { LinearStreamFixture() : gfxAllocation(static_cast(pCmdBuffer), sizeof(pCmdBuffer)), linearStream(&gfxAllocation) { } void setUp() { } void tearDown() { } MockGraphicsAllocation gfxAllocation; LinearStream linearStream; uint32_t pCmdBuffer[1024]{}; }; using LinearStreamTest = Test; } // namespace NEO