Files
compute-runtime/shared/test/common/mocks/mock_submissions_aggregator.h
Fabian Zwolinski e2e00413a8 Apply CamelCase for class and struct names
Signed-off-by: Fabian Zwolinski <fabian.zwolinski@intel.com>
2023-04-24 15:36:27 +02:00

22 lines
434 B
C++

/*
* Copyright (C) 2018-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/command_stream/submissions_aggregator.h"
namespace NEO {
struct MockSubmissionsAggregator : public SubmissionAggregator {
CommandBufferList &peekCommandBuffers() {
return this->cmdBuffers;
}
uint32_t peekInspectionId() {
return this->inspectionId;
}
};
} // namespace NEO