Files
compute-runtime/shared/test/common/mocks/mock_aub_center.h
Aleksandra Nizio f0780df9be fix: Remove unused AubMemDump logic
Related-To: NEO-14718
Signed-off-by: Aleksandra Nizio <aleksandra.nizio@intel.com>
2025-06-20 19:54:48 +02:00

28 lines
494 B
C++

/*
* Copyright (C) 2018-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/aub/aub_center.h"
#include "shared/source/aub_mem_dump/aub_mem_dump.h"
namespace NEO {
class MockAubCenter : public AubCenter {
public:
using AubCenter::AubCenter;
using AubCenter::aubManager;
using AubCenter::aubStreamMode;
using AubCenter::stepping;
MockAubCenter() {
}
~MockAubCenter() override = default;
};
} // namespace NEO