mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-09 06:23:01 +08:00
Change-Id: If83c08a0c32686fc15e8c73f44fd7e538bc8a58b Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
21 lines
382 B
C++
21 lines
382 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "core/memory_manager/deferrable_deletion.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace NEO {
|
|
class MockDeferrableDeletion : public DeferrableDeletion {
|
|
public:
|
|
bool apply() override;
|
|
|
|
virtual ~MockDeferrableDeletion();
|
|
int applyCalled = 0;
|
|
};
|
|
} // namespace NEO
|